How to reduce gap between two display:inline items?
gap is showing on all browser?
ul.tabs li {
display:inline;
margin:0 padding:0;}
alt text http://img167.imageshack.us/img167/7283/pruebank5.gif
I can fix the problem using float:left in the LI elements but I need
to understand why it’s happening.
You have whitespace between your inline elements.
float: leftfixes the problem, because floating implicitely converts the element to a block element, regardless ofdisplay: inline.And you need a
;betweenmargin:0andpadding: 0.