show/hide this revision's text 2 added 40 characters in body

inline blocks (alternative to floating divs):

.inline_block
{
    display:-moz-inline-box;
    display:inline-block;
}

don't

Don't apply this class to a div! it won't work! apply it to a span (or an inline element)

<span class="inline_block">
</span>
show/hide this revision's text 1

inline blocks (alternative to floating divs):

.inline_block
{
    display:-moz-inline-box;
    display:inline-block;
}

don't apply this class to a div! it won't work! apply it to a span

<span class="inline_block">
</span>
    Post Made Community Wiki by Community