我确信这对一些CSS专家来说是显而易见的,但我被卡住了!
我需要一个固定的标题,侧边栏和页脚(当前已删除),并且主要内容区域需要增长或缩小。问题是主要内容区域将包含一个图像,我希望它增长到最大值,从不缩小到最小值,但总是占用尽可能多的maincontent div而不会超过屏幕尺寸!
当图像以1200x800的全尺寸显示时,它在我的屏幕边缘运行,我很茫然。任何帮助非常感谢!
<div id="wrapper">
<div id="container">
<div id="header">
<h1>page header</h1>
</div>
<div id="sidebar1">
<div id="nav">
<ul>
<li><a href="#">menu 1</a></li>
<li><a href="#">menu 2</a></li>
</ul>
</div>
</div> <!-- end #sidebar1 -->
<div id="mainContent">
<div class="imagebox">
<img src="images/image16.jpg" />
</div>
</div><!-- end #mainContent -->
</div><!-- end #container -->
</div>
#wrapper {
position: relative;
margin: 0 auto;
max-width: 1550px;
max-height: 1040px;
min-width: 951px !important;
min-height: 538px !important;
overflow: hidden;
zoom: 1;
width: 100%;
height: 100%;
}
.tcGreyE #container {
background: #333333;
margin: 0 auto;
text-align: left;
}
.tcGreyE #header {
height: 120px;
background-color: #262626;
padding: 10px 0 0 20px;
}
.tcGreyE #sidebar1 {
float: left;
width: 350px;
background: #333333;
padding: 15px 0 0 20px;
}
.tcGreyE #sidebar1 h3, .tcGreyE #sidebar1 p {
margin-left: 10px;
margin-right: 10px;
}
.tcGreyE #mainContent {
position: relative;
margin: 0 10px 0 370px;
max-height: 800px;
max-width: 1200px;
width:100%;
}
.tcGreyE .imagebox {
border: 3px solid white;
width: 100%;
height: auto;
max-width: 1200x;
max-height: 800px;
padding:3px;
}
.imagebox img {
width: 100%;
}
答案 0 :(得分:0)
应该从CSS中的width=100%;
定义中删除行#mainContent
,修复它。