为什么col-xs-0占据行宽的100%?

问题描述 投票:1回答:1

我的Bootstrap容器看起来像这样:

<main >

<div class="row co-lg-12 col-md-12 col-xs-12">
  <div class="col-lg-1 col-md-1 col-xs-1" style="background-color:red; height: 100vh;"></div>

  <div class="col-lg-4 col-md-5 col-xs-0" style="background-color:blue; height: 100vh;">

  </div>

  <div class="col-lg-1 col-md-0 col-xs-0" style="background-color:green; height: 100vh;">      </div>

  <div class="col-lg-3 col-md-4 col-xs-10" style="background-color:yellow; height: 100vh;">

  </div>

  <div class="col-lg-3 col-md-1 col-xs-1" style="background-color:gray; height: 100vh;"></div>
</div>

</main>

[在开发人员工具中检查时,它显示蓝色容器占据了100个屏幕(而不是0px),红色容器位于下面。.为什么有这个主意?

谢谢!

html css twitter-bootstrap grid
1个回答
0
投票
col-xs-0不存在,如果要删除它

同样,这些类使用以下格式命名:
© www.soinside.com 2019 - 2024. All rights reserved.