Patrick
By: a guest | Aug 15th, 2009 | Syntax:
CSS | Size: 0.52 KB | Hits: 179 | Expires: Never
/*
When creating a CSS-based horizontal menu with vertical drop-down's the rendering of such a menu can cause issues under Internet Explorer. While creating such a drop-down can be done with CSS 2.0, Internet Explorer does not correctly implement the padding and margin attributes.
W3C CSS 2.0 Standard padding and margin */
padding: 16px;
margin:-16px 0px 0px -16px;
/*
Internet Explorer "work-around" implementation to render identically to other browsers with the above code. */
padding: 13px;
padding-left: 146px;