我正在尝试创建具有相等高度的列和可见的装订线的网格。我的柱子高度相等,但是我无法以与主体元素(米色)相同的背景色制作可见的装订线。我开始认为我想做的事情不可能用填充作为排水沟...

我很感谢我能获得的所有帮助。 My code

编辑我对我想要的东西不够清楚。我希望能够更改主体元素上的背景颜色,以使其影响装订线,就像您可以使用Bootstrap(我听说它的填充物中设置了装订线)Bootstrap example

请注意,我自己的示例仅具有一个列大小(.col-6),但是我需要能够使用更多不同大小的列,这就是我没有使用边距的原因,因为这很难计算大小它们,因此所有列大小+边距等于100%宽度。



body {
  background-color: beige;
}

*, *:after, *:before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row {
  overflow: hidden;
}

.col-6 {
  background-color: black;
  float: left;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  padding-right: 1.4em;
  width: 50%;
}

[class*='col-']:last-of-type {
  padding-right: 0;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

img {
  display: block;
  max-width: 100%;
}

.information {
  color: white;
}

<div class="row">
  <div class="col-6">
    <img src="https://cdn.pixabay.com/photo/2016/11/08/05/16/ancient-1807518_960_720.jpg" alt="">
  </div>
  <div class="col-6">
    <div class="information">
      <p>Aenean tincidunt ornare lacinia. Suspendisse lacinia bibendum ex, vehicula faucibus mauris ornare at. Fusce nec magna tincidunt urna molestie fringilla.</p>
      <p>Nam fermentum, mauris eget elementum sodales, libero mauris egestas urna, vitae tempor felis felis eget augue.</p>
    </div>
  </div>
</div>

最佳答案

body {
  background-color: beige;
}

*, *:after, *:before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row {
  overflow: hidden;
}

.col-6 {
  background-color: black;
  float: left;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  padding-right: 1.4em;
  width: 49%;
  margin-right:2%;
}

[class*='col-']:last-of-type {
  margin-right: 0px;
  float:right;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

img {
  display: block;
  max-width: 100%;
}

.information {
  color: white;
}

<div class="row">
  <div class="col-6">
    <img src="https://cdn.pixabay.com/photo/2016/11/08/05/16/ancient-1807518_960_720.jpg" alt="">
  </div>
  <div class="col-6 float-right">
    <div class="information">
      <p>Aenean tincidunt ornare lacinia. Suspendisse lacinia bibendum ex, vehicula faucibus mauris ornare at. Fusce nec magna tincidunt urna molestie fringilla.</p>
      <p>Nam fermentum, mauris eget elementum sodales, libero mauris egestas urna, vitae tempor felis felis eget augue.</p>
    </div>
  </div>
</div>

关于html - 无法获得相等高度的列和可见的装订线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41017946/

10-12 12:39