Forum Moderators: not2easy

Message Too Old, No Replies

any wrong with this css declaration?

         

mtzheng

12:56 am on Sep 23, 2005 (gmt 0)

10+ Year Member



hi,

table#menubar
{
text-align: center;}

i received a warning while i try to validate css file contains above css declaration.

Line : 10 (Level : 1) This property applies to block-level elements. : table#menubar

any thing wrong with this?

thanks & regards

smoonen

1:07 am on Sep 23, 2005 (gmt 0)

10+ Year Member



mtzheng, you should consider this instead:

table#menubar td, table#menubar th
{ text-align: center; }

I believe this will remove the warning but accomplish what you intended.

mtzheng

1:23 am on Sep 24, 2005 (gmt 0)

10+ Year Member



it works. thanks smoonen.