这就是我正在做的事情。我的页面结构是#wrap div,其中的页面内容包含在#content div中,然后是该div中的特殊内容块。下面的css和html。我的问题是,有没有办法让我的屏幕宽度内容 div 跨度超出它所在的 .wrap div 的 1140px 宽度。我知道我是否可以简单地移动 div 但长话短说,我无法更改 HTML,只能更改 CSS。此外,该网站是一个响应式设计,所以它必须保持这种状态。解决方案 任何人。
CSS
.wrap {
margin: 0 auto;
width: 1140px;
}
.content {
padding: 0;
width: 100%;
}
#screen-width-content {
width: 100%;
margin: 0 auto;
}
HTML
<div class="wrap">
<div class="content">
my pages content
<div id="screen-width-content">
screen width content
</div>
</div>
</div>