search
HomeWeb Front-endHTML TutorialCSS variable trial_html/css_WEB-ITnose

CSS is wonderful. It can put clothes on your page, all kinds of colorful clothes. However, for developers, it is not flexible enough, so there are all kinds of clothes. Such preprocessors include Sass, LESS, and Stylus (the author recommends Sass's SCSS syntax). These preprocessors can greatly improve the flexibility of CSS and enhance the code organization and maintenance of CSS. But after all, they are not biologically related. Then the experts in charge of CSS development couldn't sit still and began to give some new features to CSS. This article will discuss the progress and application of CSS variables.
W3C’s latest exploration of CSS variables is reflected in CSS Custom Properties for Cascading Variables Module Level 1. The latest update was on May 6, 2014. It is currently a working draft, so this article is only for research and exploration. There is a risk of modification to the knowledge points involved. This article will be updated simultaneously after W3C modifications.

Why

We know that a website or application often contains a large amount of CSS, and some attribute values ​​​​in these CSS are often reused, such as the color system used by the website, background color, text Color, link color, etc. These reused attribute values ​​are scattered in a large number of CSS documents. If you need to modify some of the values, such as changing the color, it is simply a nightmare. We need to find and replace each file, which is dizzying and mechanical. Repeated large-scale operations will inevitably lead to errors and headaches, so the organization and maintenance of CSS code has become an important bottleneck that plagues the use of CSS.
Of course, CSS preprocessing can effectively solve these problems. The use of preprocessors has become the de facto industry standard, and Sass is becoming the choice of more and more front-end ers. However, we need to deploy a compilation environment and enable development tools to support Sass, etc., which requires some additional work. When things happen, we can’t help but wonder, what if one day, we can use preprocessors like ordinary CSS?
So there is W3C’s CSS Various.

Peel the cocoon and draw the silk

About variables, it is nothing more than definition and use. Next, we will analyze them separately.

Define variables

We store the values ​​that need to be reused in a custom attribute. This custom attribute is marked with a double dotted line at the beginning, as shown in the following code.

/* 变量定义 */:root {  --main-color: #06c;}/* 变量使用 */#foo h1 {  color: var(--main-color);}

Variable name

Custom attribute names and variable names follow the definition rules of CSS identifiers and can contain alphanumeric (a-z, A-Z, 0-9), ISO 10646 character list U 00A0 and above characters, underscore (_), hyphen (-), etc., cannot start with numbers, hyphen numbers, or double hyphens.
CSS variable syntax is case-sensitive and can contain letters, numbers, underscores, and hyphens, and it is best not to start with numbers or hyphens.

/* 正确的变量名 */:root{	--link-color: #06c;	--_hover-color: #f6c;	--toolTip_color: #ff0;	--main_background_color: #333;}/* 下面两个变量都有效,表示两个变量 */:element{	--link-color:#06c;	--Link-color:#66c;}

The variable value can accept any value that conforms to the grammar. Its default value is " ", but it cannot be "", otherwise an error will be reported.

Inheritance and overriding of variables

The declaration and use of variables follow the cascading characteristics of CSS, similar to the variable scope in ordinary programming languages. Please look at the code below.

:root { --color: blue; }div { --color: green; }#alert { --color: red; }* { color: var(--color); }<p>I inherited blue from the root element!</p><div>I got green set directly on me!</div><div id='alert'>  While I got red set directly on me!  <p>I’m red too, because of inheritance!</p></div>

Using variables

We can use variables through var(), but we cannot use variables in attribute names and selectors. We can only use variables in attribute values. Use The syntax of the variable is as follows.

/*  * var()接受两个参数,自定义属性名(变量名)、缺省值 * 第一个参数custom-property-name调用变量 * 第二参数可选,指定自定义变量无效时的缺省值。 */var() = var( <custom-property-name> [, <any-value> ]? )/* for example *//* In the component’s style: */.component .header {  color: var(--header-color, blue);}.component .text {  color: var(--text-color, black);}/* In the larger application’s style: */.component {  --text-color: #080;  /* header-color isn’t set,     and so remains blue,     the fallback value */}

We can nested calls to CSS variables.

/*one example */:root {  --main-color: #c06;  --accent-background: linear-gradient(to top, var(--main-color), white);}/*another example */<one><two><three /></two></one>one   { --foo: 10px; }two   { --bar: calc(var(--foo) + 10px); }three { --foo: calc(var(--bar) + 10px); }

Compatibility and Inclusion

For front-end developers, compatibility and inclusion are always an unattainable pain. As a front-end er with a "geek mentality", we still have to work hard.
First of all, let’s take a look at the current appalling compatibility of CSS variables, as shown in the figure below, the data comes from caniuse.

The whole line is popular but only firefox knows it, so how can I play it?
What should I do if a brother says that I want to be willful and have fun? A foreigner wrote a patch (polyfill), you might as well give it a try.

Just looking for a thorough explanation

To sum up, CSS variables are in the draft stage and browser compatibility is average. I am writing this article today just to broaden my horizons and reserve knowledge. For commercial use, please use preprocessors such as Sass or LESS.
For more details, use the list below to learn more.

  • W3C reference
  • MDN info
  • caniuse
  • Acknowledgments

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

    The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

    What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

    What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

    What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

    Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

    What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

    The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

    How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

    This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

    What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

    The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Hot Tools

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.