blob: 09bc7fac5e5d5bfe067b4cc6f5c19d932be64acd (
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 Reference</title>
<head>
<style>
div {
width: 200px;
height: 100px;
line-height: 3em;
text-underline-offset: 1svb;
text-decoration-line: underline;
text-decoration-color: green;
text-decoration-thickness: 1svi;
}
</style>
</head>
<body>
<div>With viewport size</div>
</body>
|