从另一个div中获取div

时间:2015-01-07 11:55:56

标签: css

我在容器div和内容div中有div'offer',容器div的宽度为1200px,内容div的宽度为100%,填充为1em。我希望'offers'div来自div并使用屏幕的整个宽度,我尝试使用绝对位置,z-index和宽度100%,但这不起作用。有没有人对我有答案?

2 个答案:

答案 0 :(得分:0)

如果没有您的代码,我无法给出完整的答案,但请使用绝对div来left: 0; right 0;而不是width

答案 1 :(得分:0)

只需关闭容器,获得100%div,然后打开一个新容器。

“容器”只是一个指导而非规则。

Codepen Demo

* {
 margin:0;
 padding:0;
 }

.container {
  max-width: 1200px;
  margin:0 auto;
  height: 200px;
  /* for visual reference */
  background-color: #bada55;
}
.full {
  height: 200px;
  /* for visual reference */
  background-color: #663399;
}
<div class="container"></div>
<div class="full"></div>
<div class="container"></div>