I work for more than 6 months on a MVC project and all that time i've got the same problem with html css: The homepage rendered correctly. example: http://prntscr.com/tucp1
All other pages have some white space between words. example: http://prntscr.com/tucui Part of HTML:
<div class="search right">
<div class="nav">
<ul>
<li><a>Nav1</a></li>
<li><a>Nav2</a></li>
<li><a>Nav3</a></li>
</ul>
</div>
Part of my Css:
.nav ul li {
line-height: 27px;
display: inline;
float: left;
list-style-type: none;
.nav ul li a {
color: #424242;
padding: 0 10px;
font-weight: bold;
}
And yesterday i figured out that i dont have float left on li. I was testing on inner page so i eazy found the problem... Does anyone know how can only hompepage rendered correctly , some explanation?