Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

What does CSS mean?


May 29, 2021 Article blog


Table of contents


CSS is designed to add styles to HTML and is one of the basics of learning the front end, so what exactly does CSS mean?

What does CSS mean?

  • CSS means Cascading Style Sheets, Chinese name is Cascading Styles.
  • CSS is published and maintained by the CSS working group in the prestigious W3C
  • The role of CSS is to decorate the markup languages of HTML and XML
  • CSS is the browser interpretation language and can be executed directly by the browser without compiling
  • CSS is a required course for getting started at the front end, and it makes our pages even more uncaught
  • The language of CSS is divided into three parts: selector, property, value. Example: selector.property:value

The benefits of CSS

CSS separates content from performance, and content and performance of web pages can be separated directly.

This method can reduce the overall amount of code of the web page and speed up the browsing of the web page.

How to use CSS

1, embedded, embedded in the web page < style sheets >

2, inline style, to the page elements to add inline style

3, external reference, the external style sheet linked to the web page

That's all you've got about what css means.