Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 768 Bytes

css_basic.md

File metadata and controls

15 lines (10 loc) · 768 Bytes

<<<Back | Next>>>

CSS Basics

CSS stands for Cascading Style Sheets. This language works in coordination with HTML, but is its own language with its own rules and terminology. In contrast to HTML, which is responsible for the content of the page, CSS is responsible for the presentation of the page.

Examples of what CSS can help you determine include:

  • What background color you want to use for the page or a paragraph.
  • What font or font size you want for your headings or your normal text.
  • How large you want the images, and whether you want them aligned center, left, or right.
  • Where elements appear on the page.
  • Whether elements are visible to a user or not.

<<<Back | Next>>>