>
> www.regencygarden.com/test/contact.html
>
> In IE the table looks good but in FF the cells are twice as tall as in IE.
> What's the easy fix for that? I thought it was a display: table or
> display:
> block applied to the table in the CSS but it's something else.
>

The difference is in the default margins that IE and FF give to the <p> tag.
IE defaults to 0 while FF is 1em (or thereabouts). Modify your css to this:
p, .p {font-size: 100%; margin: 0;} and it'll clear up the problem.

Jeremy
______________________________________________________________________
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