html - min-width is not working in IE for frozen layout -
html - min-width is not working in IE for frozen layout -
i want create frozen layout in website template, have problem in net explorer.
i create this
<div id="newsblock"> <div id="aboutus"> <h1></h1> <span class="opendaybanner"></span> <p>you can replace paragraph above text describing faq system. here's example: if have questions our web site, our products or our services, there’s chance you’ll find reply here</p> </div> </div>
for css create this
div#newsblock{ min-width: 1300px; //this work firefox , chrome width:100%; overflow: hidden; height: 510px; background-image:url(../images/aboutstartupbg.png); background-repeat: repeat-x; }
using min-width , percentage value width create layout frozen in firefox , chrome doesn't work in ie!! suggestions please
you have define min-width property of <p>
element.
example:
p.myclass { min-width: 420px; }
html css internet-explorer layout cross-browser
Comments
Post a Comment