Hello!

I want to use inline-block on a design, but since it's not supported by FFox I wonder what the best solution would be.

Alt. 1:

elem {
    display: -moz-inline-block;
    display: inline-block; /* some say this one is really buggy */
}

Alt. 2:

elem {
    display: -moz-inline-block;
    display: inline-box; /* not intended for (X)HTML, but XUL */
}

Alt. 3:

elem {
    display: table-cell; /* Could give me the desired effect */
    display: inline-block;
}

Any thoughts?


Lars Gunther


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to