css - space between divs in html5 document -


my question simple. how can remove space between div tags?

this html document:

<div class="nav">     <div>option 1</div>     <div>option 2</div>     <div>option 3</div>     <div>option 4</div> </div> 

and css

div.nav {     border:1px solid; }  div.nav > div {     display:inline-block;     background-color: #ccc;     padding: 10px;     margin:0 } 

here fiddle can see http://jsfiddle.net/dmsf/7szjw/3/

the doctime html5

try this

<div class="nav">     <div>option 1</div><div>option 2</div><div>option 3</div><div>option 4</div> </div> 

Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -