blob: 3d01bccf55dd9c20e361551bc924d5c9353c503e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Highlight API Test: ::highlight with text-underline-offset, reference</title>
<style>
#target {
text-decoration: wavy underline green 5px;
text-underline-offset: 20px;
}
</style>
<p id="target">The underline should be offset.</p>
</html>
|