What are the naming rules for id selectors in css
This time I will give you some popular science about the naming rules of the id selector in CSS, and what are the precautions when naming the ID selector in CSS. The following is a summary. Let’s take a look.
Case sensitive
can only contain [a-zA-Z0-9],-,, which cannot start with,-,0-9
In CSS In the naming convention, the name cannot start with a number, but can only start with a letter, hyphen, or underscore. It can be followed by a letter, hyphen, underscore, or number.
At the same time, it should be noted that although it is not strict in HTML4.01 and previous versions, in XHTML, naming in CSS is case-sensitive.
1. First let’s talk about semantics
The so-called semantics means that the name should describe the content, not the performance. Examples are as follows
♦Performance Type (not recommended)
PurpleBold(purple bold)
BigHeading(large title)
top-left-box(upper left box)
underlined-and-green(underlined green)
boxLeft(left box)
red(red)
The red mark involves the expression of the element, which is in the naming It is not allowed because the form of expression changes. When changes occur, not only the class and id names of the CSS must be modified, but also the class and id names of the corresponding HTML elements must be modified. This is quite troublesome. When you are editing a large website, Multiple such modifications are very time-consuming and troublesome. Therefore, naming that adapts to changes should be adopted as much as possible, that is, naming is closely related to content.
♦Semantic type (advocated)
sidebar(sidebar)
warning(warning)
Of course, sometimes it is appropriate to use expressions to name meetings More flexible. For example, use the bordered display name to add the same style to multiple places on the website.
Remember, the best solution is not the cleanest one, nor the most beautiful one. Instead of sticking to the rules, it is better to open up your ideas.
2. Acceptable Characters
Best Rule: Always use letters, numbers, or hyphens, and always start with a letter
Remember , class and id names are case-sensitive.
Do not use underscores, do not start with numbers or hyphens, and do not accept "*", "/", or "\". Although new browsers have more support for uncommon character sets, this is not the case for all browsers. To ensure compatibility, please follow the best rules.
3. Conventions
Using some conventional names can improve the predictability of the code, making it easier for yourself and others to understand, and also helping screen readers and analyzer work to improve SEO (Search Engine Optimization)
Conventions refer to Web Front-end Development Specification Manual
4. Capitalization
Camel case (each letter of an abbreviated word is in the same case: pdfLink linkPDF)
Hyphens
5. Namespace
Add prefix, such as: wp-users. Namespaces require developing namespace conventions within the team.
This is one of the techniques used by defensive CSS, which isolates code through namespaces to avoid conflicts and prevent it from affecting original and future code.
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to choose the image format in web pages
What is the flow layout in mobile layout? What is the principle
The unpopular method of centering elements horizontally and vertically
Vertical centering container of html+css
How to use comparison operators scientifically in js
The above is the detailed content of What are the naming rules for id selectors in css. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-
