Submit buttons don't seem to clear properly without also adding float. Can someone clear this up for me (no pun intended).
CSS:
.left {float:left}
.clear {clear:both}
Form:
<form>
<label class="left">Label</label>
<input type="text" class="left">
<label class="clear left">Label</label>
<input type="text" class="left">
<input type="submit" class="clear">
</form>