blob: 9d3e3b00b08dd3242be7f5b180a5505aeb26354b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Highlight API Test: Non-conflicting attributes</title>
<style>
#blue {
background-color: blue;
color: white;
}
#yellow {
background-color: yellow;
}
</style>
<body>
<p>This <span id="blue">is an</span><span id="yellow"> example</span> of two overlapping highlights</p>
</body>
|