search
HomeWeb Front-endHTML TutorialWhat 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!

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
HTML as a Markup Language: Its Function and PurposeHTML as a Markup Language: Its Function and PurposeApr 22, 2025 am 12:02 AM

The function of HTML is to define the structure and content of a web page, and its purpose is to provide a standardized way to display information. 1) HTML organizes various parts of the web page through tags and attributes, such as titles and paragraphs. 2) It supports the separation of content and performance and improves maintenance efficiency. 3) HTML is extensible, allowing custom tags to enhance SEO.

The Future of HTML, CSS, and JavaScript: Web Development TrendsThe Future of HTML, CSS, and JavaScript: Web Development TrendsApr 19, 2025 am 12:02 AM

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

HTML: The Structure, CSS: The Style, JavaScript: The BehaviorHTML: The Structure, CSS: The Style, JavaScript: The BehaviorApr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

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

Video Face Swap

Video Face Swap

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

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools