CSS Guid
CSS-cascading style sheets
CSS defines how HTML elements are displayed.
CSS describes the visual style (appearance, layout, color, font) of HTML elements.
CSS is a separately designed file (which greatly increases the flexibility of HTML and reduces the complexity of HTML).
CSS is easy to learn. You can use a HTML element as a selector and list style attributes in curly braces
CSS instance
body
{
background-color:#d0e4fe;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
Stylesheets greatly improve productivity
Style sheets define how HTML elements are displayed. Font tags and color attributes in styles such as HTML 3.2 are usually saved in the external .css
in the file.
By simply editing a simple CSS document, external stylesheets give you the ability to change the appearance of all page layouts in your site at the same time.
CSS is a breakthrough in WEB design because it allows you to control the style and layout of multiple pages at the same time. As a web developer, youcan define styles for each HTML element and apply it to as many pages as you want. To make a global transformation, simply change the style, and all elements in the site are automatically updated.
How to learn CSS?
Follow our complete CSS tutorial
Learn our complete CSS reference manual