Wed, 2007-08-08 00:03
wow...it's been a long time since I've been here 
I have a question. If you add 'style="white-space:nowrap;"' to a 'table' tag, will each inherit that style? I hope so because I would prefer to do that than style each 'td' individually be it with a class or not.
What gets inherited in a case like this? What's a good reference to read about this?
Wed, 2007-08-08 18:14
#1
*
If you set
table {white-space: no-wrap}
then only the table element will no-wrap.
Setting
table, table * {white-space: no-wrap}
will set table and anything contained within it.
Thu, 2007-08-09 01:21
#2
ah! I've not used the
ah! 
I've not used the splat before but I've read a little about it 
That little bit of knowledge will certainly be useful in other place 
Thanks VERY much!!
Thu, 2007-08-09 14:02
#3
Hehehe, splat It's the
Hehehe, splat
It's the universal selector 
Glad you understood!

