View on GitHub

reading-notes

About CSS.

CSS, alongside HTML and Javascript, is one of the three main languages that make up the modern internet. CSS stands for Cascading Style Sheets and is responsible for the aesthetic and visual aspects of a webpage. It works in tandem with the HTML, reading the data provided by it, and applying formatting rules and modifications to them, before presenting them to the visitor via their web browser.

Selectors:

A Selector is a segment of CSS code that states what HTML element is about to be modified. <h1> is a module in HTML. If we apply formatting rules such as <h1> {color: Blue;} then the <h1> in the CSS is our Selector.

Declarations, Properties, and Values.

Back To Main Page.