Don;t float them just use display:inline-block and then they won't snag (if that's what you meant
).
Code:
.link {
/*float:left;*/
display:inline-block;
width:280px;
margin:0 30px 0 0;
padding:20px 0 10px 0;
border-bottom:1px dashed #666666;
vertical-align:top;/* or bottom if you prefer*/
}
* html .link{display:inline}/* ie6*/
*+html .link{display:inline}/* ie7*/
IE6 and 7 don't natively understand inline-block but the hack above accomplishes it because IE6 and 7 treat any inline element in haslayout mode as being inline-block.
Bookmarks