Div背景颜色不会延伸到子div

时间:2016-04-28 14:28:23

标签: html css

我有一个容器div,里面有几个子div。父div具有背景颜色,但是,这似乎没有延伸到最后几个子div。请参阅以下代码:

http://codepen.io/tombarton/pen/aNaGGa

<div class="container">
    <ul>
        <li>
            ...
        </li>
    </ul>
    <hr>
    <div class="checkout">
        <div class="left">
                          ...
        </div>
        <div class="right">
            <div class="button">
                                ...
            </div>
        </div>
    </div>
</div>

CSS

body {
  background-color: #F8F8F8;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.container {
  display: block;
  max-width: 600px;
  height: 100%;
  margin: 20vh auto;
  padding: 0 3%;
  background-color: white;
  text-align: justify;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  position: relative;
  list-style-type: none;
  margin: 20px auto;
}

.checkout {
  display: block;
  margin-top: 10px;
  width: 50%;
  float: right;
}

.left {
  display: block;
  width: 55%;
  float: left;
  line-height: 40px;
  text-align: right;
}

.right {
  display: block;
  width: 40%;
  margin: auto;
  float: right;
  cursor: pointer;
}

我猜这是因为最后两个div没有内容,但我不是100%肯定。有没有人有任何想法?

感谢。

5 个答案:

答案 0 :(得分:2)

将父div样式应用于子div要么删除

> float:left
来自child的

或者添加float:left到父div。希望这能解决你的问题。

答案 1 :(得分:1)

.container {
  display: block;
  max-width: 600px;
  height: 100%;
  margin: 20vh auto;
  padding: 0 3%;
  background-color: white;
  text-align: justify;

  overflow: auto;
}

您的结帐是浮动的,因此它无法正确应用于容器的行为方式

答案 2 :(得分:1)

您需要在父div中的最后一个浮动元素之后添加<div style="clear:both;"></div>

您的新代码变为:

&#13;
&#13;
body {
  background-color: #F8F8F8;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.container {
  display: block;
  max-width: 600px;
  height: 100%;
  margin: 20vh auto;
  padding: 0 3%;
  background-color: green;
  text-align: justify;
}

h1 {
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 700;
  padding-top: 20px;
}

ul {
  margin: 0;
  padding: 0;
}

.inline-row {
  display: inline-block;
  height: 56px;
  vertical-align: top;
}

li {
  list-style-type: none;
  margin: 20px auto;
}

.image-container {
  width: 24%;
  img {
    width: 100%;
    height: auto;
  }
}

.product {
  width: 58%;

  h2 {
    margin: 0;
    padding: 0;
    line-height: 28px;
    vertical-align: top;
  }
  p {
    margin: 0;
    padding: 0;
    line-height: 28px;
  }
}

.cost {
  width: 13%;
  text-align: right;
  p {
    margin: 0;
    padding: 0;
    line-height: 28px;
  }
}

.delete {
  float: right;
  width: 3%;
  text-align: right;
  font-size: 0.7em;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
}

hr {
 margin-top: 30px;
}

.checkout {
  display: block;
  margin-top: 10px;
  width: 50%;
  float: right;
}

.left {
  display: block;
  width: 55%;
  float: left;
  line-height: 40px;
  text-align: right;
}

.right {
  display: block;
  width: 40%;
  margin: auto;
  float: right;
  cursor: pointer;
}

.button {
  height: 40px;
  width: 100%;
  border: 1px black solid;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
}
.clear{
  clear:both;
}
&#13;
<div class="container">
  <h1>Shopping Cart</h1>
  <ul>
    <li>
      <div class="inline-row image-container">
        <img src="http://placekitten.com/150/56">
      </div>
      <article class="inline-row product">
        <h2>barolo.</h2>
        <p>barolo di castiglione falletto</p>
      </article>
      <div class="inline-row cost"><p>39.99 EUR</p></div>
      <div class="inline-row delete">X</div>
    </li>
    <li>
      <div class="inline-row image-container">
        <img src="http://placekitten.com/150/56">
      </div>
      <article class="inline-row product">
        <h2>barolo.</h2>
        <p>barolo di castiglione falletto</p>
      </article>
      <div class="inline-row cost"><p>39.99 EUR</p></div>
      <div class="inline-row delete">X</div>
    </li>
    <li>
      <div class="inline-row image-container">
        <img src="http://placekitten.com/150/56">
      </div>
      <article class="inline-row product">
        <h2>barolo.</h2>
        <p>barolo di castiglione falletto</p>
      </article>
      <div class="inline-row cost"><p>39.99 EUR</p></div>
      <div class="inline-row delete">X</div>
    </li>
  </ul>

  <hr>   
  
  <div class="checkout">
    <div class="left">TOTAL 148.98 EUR</div>
    <div class="right">
      <div class="right button">CHECKOUT</div>
    </div>
  </div>
  <div class="clear"></div>
</div>
&#13;
&#13;
&#13;

此处示例:https://jsfiddle.net/22L7engy/

答案 3 :(得分:0)

在您的CSS或内联中,将代码白化为:

#adiv {
 background-color: #F8F8F8;
}

#anotherdiv {
 background-color: #F8F8F8;
}

在HTML中,请确保将每个div调用到各自的CSS。

答案 4 :(得分:0)

您只需要在容器上添加overflow:hidden或overflow:auto

请参见https://stackoverflow.com/a/20180165/2482513