Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 917 Bytes

File metadata and controls

18 lines (12 loc) · 917 Bytes

ccs

What is CSS? :

CSS (Cascading Style Sheets) allows you to create great-looking web pages, but how does it work under the hood? This article explains what CSS is, with a simple syntax example, and also covers some key terms about the language

CSS syntax

CSS is a rule-based language — you define rules specifying groups of styles that should be applied to particular elements or groups of elements on your web page. For example "I want the main heading on my page to be shown as large red text."

CSS Modules

As there are so many things that you could style using CSS, the language is broken down into modules. You'll see reference to these modules as you explore MDN and many of the documentation pages are organized around a particular module.

How To Add CSS

  • External CSS
  • Internal CSS
  • Inline CSS

you can vist this page for more info.