19 lines
No EOL
453 B
HTML
19 lines
No EOL
453 B
HTML
<!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> |