This document provides an introduction to CSS (Cascading Style Sheets). It defines CSS as used to style and lay out web pages, working with HTML. Key points covered include:
- CSS allows separation of document structure (HTML) from presentation (CSS).
- CSS works with the box model and can control colors, fonts, layout, and other design aspects.
- Styles can be defined internally, externally, or inline. External is best for multiple pages.
- Selectors identify HTML elements to which styles apply. Types include elements, classes, IDs.
- Common style properties covered are backgrounds, text, fonts, borders, and tables.
- An example is provided to demonstrate CSS syntax and