blob: da178499c43c354693f87f57939983152e1567a3 (
plain)
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
|
<style>
span {
font-weight: bold;
color: yellow;
border: 5px solid red;
display: none;
}
.all {
all: unset;
}
.unset {
font-weight: unset;
color: unset;
border: unset;
display: unset;
}
</style>
<body>
<span class="all">all</span><br>
<div style="color: green; font-weight: normal;">
<span class="unset">unset</span>
</span>
</body>
|