Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="author" title="Karl Dubost" href="https://github.com/karlcow" />
<link
rel="help"
/>
<link
rel="help"
/>
<title>::marker with variables</title>
<style>
.firstTest::marker {
color: rgb(255 119 0 / 0.75);
}
.secondTest::marker {
color: rgb(255 119 0);
}
</style>
</head>
<body>
<ul>
<li class="firstTest">Item 1</li>
<li class="secondTest">Item 2</li>
</ul>
</body>
</html>