EN
CSS - tilde selector
0 points
In this article, we would like to show you the general sibling combinator (tilde selector) example in CSS.
Quick solution:
xxxxxxxxxx
1
div ~ p {
2
background-color: red;
3
}
In this section, we present example usage of the tilde selector (~
) which selects all iterations of the second element, which are followed by the first element. The elements don't have to be specified right after.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
div ~ p {
7
background: yellow;
8
}
9
10
</style>
11
</head>
12
<body>
13
<div>div element</div>
14
<p>p element.</p>
15
<p>p element.</p>
16
<div>div element.</div>
17
<p>p element.</p>
18
<p>p element.</p>
19
</body>
20
</html>