Firefox CSS nowrap problem -
i'm trying create horizontal (no line breaks) unordered list of images on website using code follows:
<ul class="imageset"> <li> <img src="blah"> </li> <li> <img src="blah"> </li> <li> <img src="blah"> </li> </ul>
in css, i'm using following rules:
.imageset { white-space: nowrap; } .imageset li { display: inline; float: left; height: 100% }
this working in chrome, not in firefox, reason know why?
edit: clarify, problem in ff li's still wrap. i'm trying make them appear in single, unbroken horizontal line going off rightmost edge of page.
try removing float:left
display:inline
should suffice
Comments
Post a Comment