What are :is and :where? This probably doesn’t make much sense in terms of how it helps us write shorter selectors, so let’s try using How to use :is and :where?:where() can help us solve problems like this .btn span > a:hover, #header span > a:hover, #footer span > a:hover { ...; } Become something like this :where(.btn, #header, #footer) span > a:hover { ...; } and :is() can help add the same to this example is(.btn, #header, #footer) span > a:hover { ...; } What is the difference between :isand :where? What is CSS specificity (in a nutshell)?There are four levels of specificity in CSS. Each level or category has a different score, and we can add up all the scores to calculate the specificity of the selector. The element with the highest number of selectors will have its styles applied to it, which is why sometimes when you write CSS, your styles won’t be applied and will show up as crossed out in the developer tools. Specificity rating score
For example button.btn { color: red; } .btn { color: green; } .btn = 10 button.btn = 1 + 10 = 11 If we put the As you can see, there are two different levels of specificity for pseudo-classes. This is because different pseudo-classes can have different levels of specificity, depending on which pseudo-classes you use and how you use them. This is the end of this article about what the newly added CSS :where and :is pseudo-class functions are. For more relevant CSS :where and :is pseudo-class function content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future! |
<<: SQL query for users who have placed orders for at least seven consecutive days
>>: Vue elementUI implements tree structure table and lazy loading
1. Introduction It has been supported since versi...
0. Prepare relevant tables for the following test...
Programs in Docker containers often need to acces...
The effect to be achieved In many cases, we will ...
Recently I found that even if the TD of the table ...
background As the number of application systems c...
1.1 Introduction By enabling the slow query log, ...
1. Download mysql-5.7.21-windowx64.zip from the o...
1. In the previous chapter, we learned that we ca...
1. Pull the Mysql image docker pull mysql:5.7 2. ...
This article records the installation and configu...
Using SSH terminal (such as putty, xshell) to con...
When using MySQL to query the database and execut...
Table of contents Solution 1: Copy the transfer c...
The SSH mentioned here is called Security Shell. ...