Glossary of Cascading Style Sheet (CSS) termsGlossary of terms about Cascading Style Sheets terms with selected examples.element- (Found July 5, 2008 ) An HTML or markup element to which a CSS declaration might be associated. A named element is the simplest form of CSS selector.http://www.codestyle.org/css/Glossary.shtml#element declaration- (Found July 5, 2008 ) A corresponding pair of property and value parameters which suggests a CSS style for a given selector. Numerous declarations can be made in the same style rule, with a trailing semicolon after each, enclosed by a pair of curly braces. In the following example color: red is a single declaration, background: white; is a second:http://www.codestyle.org/css/Glossary.shtml#declaration contextual selector- (Found July 5, 2008 ) A syntax for specifying a CSS selector by means of the context in which an element or attribute occurs in the markup structure of a document. In CSS level 1, the syntax takes the form of the element names in a space separated sequence. For instance, contextual selectors may refer to a strong element within a dt element, or a p element with the class attribute "Classic" enclosing an abbr element:http://www.codestyle.org/css/Glossary.shtml#contextualselector |