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_ Then followed by another _ , - , number or letter. In regular expression, a legal CSS class name is: 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
Table of contents The creation and confusion of n...
This article has been included on GitHub https://...
The creation of the simplest hello world output i...
Preface I watched web.dev's 2020 three-day li...
MySQL variables include system variables and syst...
Import the data exported from the Oracle database...
1. Download address: http://dev.mysql.com/downloa...
Main differences: 1. Type SQL databases are prima...
Introduction In the previous article, we installe...
Table of contents 1. v-for: traverse array conten...
MySQL multi-table query (Cartesian product princi...
CSS media query has a very convenient aspect rati...
Table of contents 1. Dockerfile 2. pom configurat...
1. Wireless Run PowerShell and enter the command:...
Table of contents Preface 1. bat executes js 2. T...