15 lines
425 B
HTML
15 lines
425 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<title>CSS Highlight API Test: Highlighting thick text - Reference</title>
|
|
<link rel="author" title="Stephen Chenney" href="mailto:schenney@igalia.com">
|
|
<style>
|
|
body {
|
|
-webkit-text-stroke-width: 3px;
|
|
font-size: 25px;
|
|
}
|
|
span {
|
|
-webkit-text-stroke-width: 0px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>This<span> thick text </span>should not be highlighted</body>
|