Skip to content

Instantly share code, notes, and snippets.

View TimBroddin's full-sized avatar

Tim Broddin TimBroddin

View GitHub Profile
@Quinten
Quinten / inline-block-IE
Created April 21, 2011 12:46
inline-block in IE (finally)
li {
display: -moz-inline-stack; /* Firefox 2 */
display: inline-block;
zoom: 1; /* IE hack to trigger hasLayout */
*display: inline; /* IE hack to achieve inline-block behavior */
}