19 lines
516 B
HTML
19 lines
516 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
|
|
<link rel="match" href="text-emphasis-visited-inheritance-ref.html">
|
|
<link rel="help" href="https://developer.mozilla.org/en-US/docs/Web/CSS/Privacy_and_the_:visited_selector">
|
|
<style>
|
|
:root {
|
|
font-size: 50px;
|
|
text-emphasis-color: green;
|
|
}
|
|
em {
|
|
text-emphasis-style: "!"; /* (Should appear green). */
|
|
}
|
|
</style>
|
|
<main>
|
|
<a href="">
|
|
Simply <em>UNACCEPTABLE</em>.
|
|
</a>
|
|
</main>
|