CSS 块在窄浏览器中无法缩放至 100%
我有一个问题 - 当我的浏览器窄于 100% 的页面宽度(又名 960px)时,容器块不会缩放 100%。
图片:http://www.upload.ee/image/1549682/problem.png
/* CONTENT */
div#content {
width:100%;
background-color: #e0e3e3;
}
div#content_wrap {
display: block;
width: 960px;
min-height:200px;
margin: 0 auto 0 auto;
}
<div id="content">
<div id="content_wrap">
test
</div>
</div>
I have a problem - a container block doesn't scale 100% when my browser is narrower than 100% of the page-width (aka 960px).
Image: http://www.upload.ee/image/1549682/problem.png
/* CONTENT */
div#content {
width:100%;
background-color: #e0e3e3;
}
div#content_wrap {
display: block;
width: 960px;
min-height:200px;
margin: 0 auto 0 auto;
}
<div id="content">
<div id="content_wrap">
test
</div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在你的风格中添加这个
add this in your style
将
width: 100%
更改为display: inline-block
。问题是
width: 100%
将宽度设置为父元素的 100%,而不是子元素的大小。要使 div 适合内容,请使用inline-block
。change
width: 100%
todisplay: inline-block
.the problem is that
width: 100%
sets the width to 100% of the parent element, not the size of the children. To fit a div to the content, useinline-block
.