Я хочу сделать замороженный макет в шаблоне веб-сайта, но у меня есть проблема в Internet Explorer.
Я делаю так
<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 !!Любые предложения, пожалуйста