Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p.ex1 {
  text-emphasis-color: red;
  text-emphasis-style: triangle; 
}
p.ex2 {
  text-emphasis-color: blue;
  text-emphasis-style: triangle;
}
p.ex3 {
  text-emphasis-color: rgb(130, 180, 150);
  text-emphasis-style: triangle;
}
p.ex4 {
  text-emphasis-color: currentcolor;
  text-emphasis-style: triangle;
}
</style>
</head>
<body>
<h1>The text-emphasis-color Property</h1>
<p class="ex1">This is some text.</p>
<p class="ex2">This is some text.</p>
<p class="ex3">This is some text.</p>
<p class="ex4">This is some text.</p>
</body>
</html>