* Aaron Gray wrote:
>I have two tables in <spans> I want side by side, okay in IE but in
>Mozilla I need to use "display: -moz-inline-box;" this does not work
>in Opera  which requires "display: inline-block".

Note that in HTML nesting <table> inside <span> is not allowed. As for
this particular problem, you should be able to use

  display: -moz-inline-box;
  display: inline-block;

Assuming that Mozilla does not support display:inline-block, it will
ignore the declaration and use the previous declaration instead. The
same goes for Opera the other way round. You might also be looking
for display:inline-table. Besides, putting two tables next to each
other should be a lot simpler than what you describe.
-- 
Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to