我非常精通 CSS 和 HTML,但我只是想知道这将如何正常工作。
我希望容器的宽度为 990px,但由于左右添加了阴影,我的宽度约为 1237px
我把它定位了,但我希望将溢出隐藏到 990px 宽度...
有没有办法做到这一点?这是我当前的代码。
CSS:
body, html {margin:0; padding:0;}
body {background:url(../images/bg-x.jpg) top center repeat-x; background-color:#000;}
#main-wraper { }
#main-container {margin:0 auto; width:990px; background:url(../images/container-bg.jpg) no-repeat; height:660px;}
#main-left {background:url(../images/bg-left.jpg) left center no-repeat;}
#main-right {background:url(../images/bg-right.jpg) right center no-repeat;}
#shadows {width:1237px; margin:0 auto; overflow-x: hidden}
html:
<body>
<div id="shadows">
<div id="main-left">
<div id="main-right">
<div id="main-wraper">
<div id="main-wraper-liner">
<div id="main-container">
<div id="main-container-liner">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
链接在这里
http://hithouse.businesscatalyst.com/index.html
提前致谢。