CSS Basics
Chapter: 1 What is CSS ? Welcome to CSS! CSS stands for C ascading S tyle S heets. - Cascading refers to the way CSS applies one style on top of another. - Style Sheets control the look and feel of web documents. CSS and HTML work hand in hand: - HTML sorts out the page structure. - CSS defines how HTML elements are displayed. To understand CSS, you should already have a basic knowledge of HTML. If you want to study HTML, check out our HTML course . Welcome to CSS! What are style sheets used for? to control the look and feel of web documents to define the structure of web documents to store the keywords of web pages to script web pages Why Use CSS? CSS allows you to apply specific styles to specific HTML elements. The main benefit of CSS is that it allows you to separate style from content . Using just HTML, all the styles and formatting are in the same place, which becomes rather difficult to main...