Topic: CSS syntax question
I was reading an article and trying to duplicate the contents of a CSS file which contained code about a translucent link for menu items when I came across these definitions in a CSS file. The syntax of the div before the class statements confuse me and I don’t understand what this means. Does this mean that for any div in a class named content or links the following rule applies? Thanks!
div #content {
background: transparent url(../images/halfscr-blue.gif) 0 0 repeat scroll;
voice-family: "\"}\"";
voice-family: inherit;
background: #468 url(../images/shell-blue.jpg) 0 0 no-repeat fixed;
}
div#links a {
background: transparent url(../images/halfscr-black.gif) 0 0 repeat scroll;
/* voice-family: "\"}\"";
voice-family: inherit; */
background: transparent url(../images/shell-fade.jpg) 0 0 no-repeat fixed;
}
