CSS selector priority and efficiency optimization
Date: 7th of Aug, 2015
Author: HaoyCn
This article collects information about CSS selection from all over the Internet Summarize the article on the device and summarize one by yourself.
Priority of various selectors
above Among the selectors, in addition, tested
attribute selector = pseudo-class selector (apply the last one)
:last-child{color:red;}[desc]{color:green;}
pseudo-class selector> adjacent selector
:last-child{color:green;}p ~ p{color:blue;}
Adjacent selector = child selector = descendant selector (last one applied)
p~p{color:red;}body p{color:blue;}body > p{color:green;}
descendant selector> tag selector
p ~ p{color:blue;}p{color:green;}
style The influence of position
is the same as , and the application depends on the order of the
Element The priority of the attribute is higher than the above two styles
!important The priority is higher than the above two styles
Remarks
!important BUG in IE6: In the same group of CSS properties, !important does not work. For example:
#selector{color:blue !important;color:green;}
Selector efficiency
The principle of reading selectors is from right to left. Therefore, the last selector on the right we write is called the key selector and has a decisive impact on efficiency.
The following efficiency rankings are provided by @Steve Souders.
Higher priority may not necessarily be more efficient
For example: #id .class and div#id p.class
The former is more efficient than the latter, and the latter has a higher priority than the former. We need to balance efficiency with prioritization.
Optimization suggestions
Many suggestions are provided at the following URL:
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Writing_efficie ...
A brief summary is as follows:
Avoid using wildcards
Do not use tag names or class names to modify IDs Rules: If the rule uses an ID selector as the key selector, do not add a tag name to the rule. Because the ID itself is unique, adding tag names will unnecessarily reduce matching efficiency.
Do not use tag names to modify classes: Compared to tags, classes are more unique.
Try to be as specific as possible: the simplest and crudest cause of inefficiency is using too many rules on tags. Adding classes to elements can be subdivided into classes more quickly and can reduce the time it takes for rules to match tags.
About descendant selectors and sub-selectors: Avoid using descendant selectors. If you must use them, it is recommended to use sub-selectors instead. However, sub-selectors should also be used with caution. Tag rules should never be used. Contains child selectors.
Take advantage of inheritability: there is no need to declare styles on general content.

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.


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

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
