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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -