Detailed explanation of the problem of CSS class names

Detailed explanation of the problem of CSS class names

The following CSS class names starting with a number will not take effect:

.1st{
    color: red;
}

A valid CSS class name must start with one of the following:

• Underscore_
•Hash-
• Letters a - z

Then followed by another _ , - , number or letter.

In regular expression, a legal CSS class name is:

-?[_a-zA-Z]+[_a-zA-Z0-9-]*

In addition, according to the description in the CSS standard, if the class name starts with a hyphen - , the second character must be an underscore _ or a letter, but actual testing has found that in addition to the two mentioned, following another hyphen is also effective.

The following are the test codes and results:

<p class="1st">should apply red color</p>
<p class="-1foo">should apply red color</p>
<p class="-_foo">should apply red color</p>
<p class="--foo">should apply red color</p>
<p class="-foo">should apply red color</p>
<p class="foo">should apply red color</p>
.1st {
  color: red;
}
.-1foo {
  color: red;
}
.-_foo {
  color: red;
}

.--foo {
  color: red;
}

.-foo {
  color: red;
}
.foo {
  color: red;
} 

Actual effects of different class names

Summarize

The above is a detailed explanation of the CSS class name problem introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Web design must also first have a comprehensive image positioning of the website

>>:  Shtml Concise Tutorial

Recommend

Docker uses the Prune command to clean up the none image

Table of contents The creation and confusion of n...

How to implement Docker volume mounting

The creation of the simplest hello world output i...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

Detailed explanation of the use of custom parameters in MySQL

MySQL variables include system variables and syst...

Import backup between mysql database and oracle database

Import the data exported from the Oracle database...

MySQL 5.7.20 compressed version download and installation simple tutorial

1. Download address: http://dev.mysql.com/downloa...

Summary of the Differences between SQL and NoSQL

Main differences: 1. Type SQL databases are prima...

How to install PHP7 Redis extension on CentOS7

Introduction In the previous article, we installe...

Detailed explanation of Vue's list rendering

Table of contents 1. v-for: traverse array conten...

How to use CSS media query aspect-ratio less

CSS media query has a very convenient aspect rati...

Nodejs uses readline to prompt for content input example code

Table of contents Preface 1. bat executes js 2. T...