html - css float right space -


anyone know how fix this! on 'get in touch button'
enter image description here

it works find in browser except ie7;
html:

<nav>     <ul>         <li><a href="#">home</a></li>         <li><a href="#">branding</a></li>         <li><a href="#">about</a></li>         <li><a href="#">get in touch</a></li>     </ul> </nav> 

css:

nav { float:right;} nav ul { margin:0px; padding:0px; } nav ul li { float:left; } nav ul li { display:block; background:#ccc; padding:5px; margin-left:5px;} 

add white-space:nowrap nav ul li css rule.

about white-space property: http://vidasp.net/css-white-space-property.html


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -