What I under stand on css

What I under stand on css

What I understand on css

What is the full abbrivation of css ?

css is also known as Cascading Style Sheets

Meaning of css (Cascading Style Sheets)

Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media.

OR

In a simpelar way

Cascading Style Sheets (CSS) is a stylesheet language used for the design or decoration of your webpage ( to decorate the output (result) of your website)

Cascading Style sheet, Selector, Property, Property value, Decleration

Selector

This is the HTML element name at the start of the ruleset. It defines the element(s) to be styled (in this example,elements). To style a different element, change the selector.

Property

These are ways in which you can style an HTML element. (In this example, color is a property of the

elements.) In CSS, you choose which properties you want to affect in the rule.

property value

To the right of the property—after the colon—there is the property value. This chooses one out of many possible appearances for a given property. (For example, there are many color values in addition to red.)

Decleration

This is a single rule like color: red;. It specifies which of the element's properties you want to style. css-declaration-small

Take note . Apart from the selector, each ruleset must be wrapped in curly braces. ({}) . Within each declaration, you must use a colon (:) to separate the property from its value or values. . Within each ruleset, you must use a semicolon (;) to separate each declaration from the next one.

css.png Something I noticed about css CSS: all about boxes Something you'll notice about writing CSS: a lot of it is about boxes. This includes setting size, color, and position. Most HTML elements on your page can be thought of as boxes sitting on top of other boxes.