Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title></title> ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title></title>
Updated 06-17-2010 at 09:45 PM by molendijk
There are actually 4 css selectors that can figure in this. Only three of them really matter. If you only have one show on your page, you only need to think about the last two. The selectors are: The id of the show, #fadeshow1, for example. .fadeslidedescdiv - the class for all description containers. .descpanelbg - the class for all description backgrounds. .descpanelfg - the class for all description foregrounds. ...
#fadeshow1
.fadeslidedescdiv
.descpanelbg
.descpanelfg
With CSS3, we have gotten many new pseudo selectors that give us a great deal of options. However, the short list of combinator selectors has only been increased from 3 to 4: Code: foo bar foo>bar foo+bar foo~bar The first combinator is the most used selector and selects any element bar that is a descendant of foo. The second combinator selects any element bar that is a child (direct descendant) of foo. The third combinator selects any element bar that is an adjacent ...
foo bar foo>bar foo+bar foo~bar
Have you ever noticed that ugly dotted border when you click a link? Here's how to make it go away and stay away. (Please don't laugh at the puny size of this tidbit.) Code: a { outline: none; }
a { outline: none; }
Updated 04-28-2009 at 10:12 PM by ddadmin
Yesterday, April 9th was the fourth annual CSS Naked Day. Participating websites get rid of their stylesheets and feed their naked markup to the world. The reason for this is to promote web standards and semantics. To learn more about this and sign up (for next year) go to this page: http://naked.dustindiaz.com/ P.S. I know it would have been better if I posted this before April 9th but I forgot about it. Well, instead of seeing this as a late post about ...