January 4, 2007
CSS Basics 101 - Video Tutorials
If you want to build modern web sites, you need to know about Cascading Style Sheets (CSS). CSS gives you the power to style and lay out web sites so they are usable, compact, good looking, well structured, and easy to maintain. The basic purpose of CSS is to allow the designer to define style declarations, and to apply those styles to selected portions of HTML pages using selectors which are references to an element or grop of elements to which the style is applied.
Style sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the
element of an HTML page, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document.The CSS syntax is made up of three parts: a selector, a property and a value:
selector {property: value}
The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated by a colon, and surrounded by curly braces.
To get a jump start on learning the basics of CSS check out his video tutorials (.zip) Kevin Yank:
Selectors
Advanced Selectors
Text Properties pt.1
Text Properties pt.2
Inheritance
The Cascade
