"CSS Pseudo-Classes"
Bootstrap 4.1.1 Snippet by SANTANU CHOWDHURY

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<h1>CSS Pseudo-Classes</h1>
<h2>:has()</h2>
<div class="product">
<span class="price">£925.00</span>
</div>
<div class="product discount">
<span class="price">£925.00</span>
<div class="strikethrough">Was £1,220.00</div>
</div>
<br />
<h2>:not()</h2>
<ul>
<li>Item 1</li>
<li class="highlight">Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<br />
<h2>empty</h2>
<ul>
<li>Item 1</li>
<li></li>
<li>Item 3</li>
</ul>
<br />
<h2>:focus</h2>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* :has() */
.product{
padding: 30px 20px;
font-size: 20px;
border: 1px solid #ddd;
margin-bottom: 10px;
}
.product .price {
color: black;
}
.product:has(.strikethrough) .price {
color: red;
}
/* not */
li:not(.highlight) {
background-color: #f00;
}
/* empty */
li:empty {
background-color: #ddd;
}
/* :focus */
.input-field:focus {
border-color: #f00;
outline: none;
}
/* :checked */
.checkbox {
appearance: none;
width: 20px;
height: 20px;
border: 2px solid #ccc;
border-radius: 4px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: