I’m sure most of you are aware of the display:inline-block. It behaves as an inline and displays as a block (you can set width and height).
The problem is that firefox 2 does not support inline-block. The fix to this issue would be: display:-moz-inline-box.
To make it work in any browser you need to have both. So: display: inline-block; display:-moz-inline-box; is cross-browser.


No Comments