平铺元素从我的父元素的中间开始,而不是从父元素的左侧开始

时间:2018-12-29 02:33:36

标签: html css

说明:我有一个父元素,其宽度为100%。然后,该元素内的每个元素的宽度为25%,并且每个元素向左浮动。该样式可以在应该合并到页面第二行的第五个元素处工作,但是可以这样做,但是从页面的中间开始而不是第一个元素开始的地方。

URL Page experiencing the problem

理想的布局如下所示:Ideal Layout

相对于目前的情况:What it actually looks like

我的浏览器是Chrome,我的笔记本电脑是13英寸的Macbook Pro。

每个元素包含类col-3,父元素包含col-12。这是每个的CSS:

  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

1 个答案:

答案 0 :(得分:0)

使用Chrome开发工具,我可以进行以下更改,并且可以正常运行。你能告诉我是否有帮助?

[class*="col-"] {
width: 100%;
/* float: left; */
display: flex;
flex-wrap: wrap;

enter image description here