I am trying to build a toolbar, containing a checkbox like this.
<div class="toolbar"><div class="widget-toolbar">
<ul class="items">
<li class="toolbar-button item">
Record
</li><li class="toolbar-button item">
Load
</li><li class="toolbar-button item">
Save
</li><li class="toolbar-button item">
Clear
</li><li class="toolbar-checkbox item">
<input type="checkbox" id="1369637447465" value="true">
<label for="1369637447465" style="-webkit-user-select: none;">Continuous check</label>
</li></ul>
</div></div>
But as you can see in this fiddle http://jsfiddle.net/9WSpa/ its Result has one pixel space between the botder-top of the toolbar and the border top of each button. Now if you remove the checkbox from the ul, then the pixel line vanishes and everything is fine. Can anyone tell me, why the checkbox consumes one pixel more than the rest?
Thanks in advance Chris