Preview versions of Safari (Technology Preview 106) and Firefox (version 78) now support the new CSS Use :is() to reduce duplication You can use the /* before */ .embed .save-button:hover, .attachment .save-button:hover { opacity: 1; } /* after */ :is(.embed, .attachment) .save-button:hover { opacity: 1; } This feature is mainly useful in unprocessed standard CSS code. If you use Sass or a similar CSS preprocessor, you may prefer nesting. Note: Browsers also support the non-standard Use :where() to keep specificity low Neither This feature is useful for styles that should be easily overridden. For example, the base stylesheet sanitize.css contains the following style rule, which sets the default fill color if the svg:not([fill]) { fill: currentColor; } Due to its higher specificity (B=1, C=1), websites cannot override this declaration with a single class selector (B=1) and are forced to either add .share-icon { fill: blue; /* Not applicable due to low specificity*/ } CSS libraries and base stylesheets can avoid this problem by wrapping their attribute selectors with /* sanitize.css */ svg:where(:not([fill])) { fill: currentColor; } /* author stylesheet */ .share-icon { fill: blue; /* Due to high specificity, applicable*/ } Summarize This is the end of this article about CSS :is() and :where() coming to browsers. For more CSS :is() and :where() browser content, please search 123WORDPRESS.COM’s previous articles or continue browsing the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
>>: Use pure CSS to disable the a tag in HTML without JavaScript
Recently, I encountered the need to embed a player...
1. When ffmpeg pushes video files, the encoding f...
There is often a scenario where the image needs t...
background go-fastdfs is a distributed file syste...
This article example shares the specific code of ...
Table of contents 1. Import files 2. HTML page 3....
This article uses examples to illustrate the comm...
Mysql limit paging statement usage Compared with ...
Defining the type of data fields in MySQL is very...
This article example shares the implementation of...
This article mainly introduces common strategies ...
First, create a tomcat folder. To facilitate the ...
Table of contents 1. Download the system image fi...
Table of contents One-way data flow explanation V...
Linux is an open system. Many ready-made programs...