我想在網站模板中進行凍結佈局,但在Internet Explorer中遇到問題。最小寬度不適用於IE凍結佈局
我作出這樣
<div id="NewsBlock">
<div id="aboutUs">
<h1></h1>
<span class="OpenDayBanner"></span>
<p>You can replace the paragraph above with some text describing your FAQ system. Here's an example: If you have questions about our web site, our products or our services, there’s a good chance you’ll find the answer here</p>
</div>
</div>
對於CSS我作出這樣
div#NewsBlock{
min-width: 1300px; //this work for Firefox and chrome
width:100%;
overflow: hidden;
height: 510px;
background-image:url(../images/aboutstartupbg.png);
background-repeat: repeat-x;
}
使用最小寬度和百分比值的寬度使得在Firefox和Chrome凍結的佈局,但它不」在IE瀏覽器工作!任何建議請
你是什麼意思被凍結?哪個版本的IE有這個問題? – Jawad
我的意思是在調整窗臺大小時,佈局仍然是凍結的,一些佈局會隱藏,另一個會穩定。 – palAlaa
與stackoverflow佈局相同,請嘗試重新調整瀏覽器的大小。 – palAlaa