blob: 3c08ad55aefe3cbb6670250b7c069e897f805977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
body {
font-size: 3em;
font-weight: bolder;
}
#affected1 {
color: red;
}
#affected2 {
color: green;
}
</style>
<body><span id="affected1">This should have 'highlight1' style (red).</span><span id="affected2">This should have 'highlight2' style (green).</span>
|