blob: bbfc952116f2f2c86009d8ce6d301d635d71f6e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Highlight API Test: </title>
<head>
<style>
div {
margin: 50px;
font-size: 20px;
text-underline-offset: 0.5em;
text-decoration-line: underline;
text-decoration-color: green;
text-decoration-thickness: 0.25rem;
}
</style>
</head>
<body>
<div id="h1">Font relative units with 20px font</div>
<div id="h2">Font relative units with 20px font</div>
</body>
|