> * html body,
> *:first-child+html body {
> font-size: 110%;
> }
Silly IE - those two selectors cannot be combined*, so you'll have to
repeat the CSS property assignment:
* html body {
font-size: 110%;
}
*:first-child+html body {
font-size: 110%;
}
-- F.
* http://www.webdevout.net/css-hacks#in_css
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---