blob: 477dfa78b576fd70833bffa60fe60d1126e8369e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
font-size: 80px;
color: gray;
text-shadow: none;
stroke-width: 10px;
-webkit-text-stroke-width: 10px;
display: inline;
}
div.stroke-color-class {
stroke-color: green;
}
</style>
</head>
<body>
<div style="-webkit-text-stroke-color: blue;">&#x25fc;</div>
<div style="stroke-color: green; -webkit-text-stroke-color: blue;">&#x25fc;</div>
<div style="-webkit-text-stroke-color: blue; stroke-color: green;">&#x25fc;</div>
<div style="-webkit-text-stroke-color: blue; stroke-color: green; stroke-color: yellow;">&#x25fc;</div>
<div style="-webkit-text-stroke-color: blue; stroke-color: green; -webkit-text-stroke-color: red;">&#x25fc;</div>
<div style="stroke-color: green;"><span style="-webkit-text-stroke-color: blue;">&#x25fc;</span></div>
<div style="-webkit-text-stroke-color: blue;"><span style="stroke-color: green;">&#x25fc;</span></div>
<div style="-webkit-text-stroke-color: blue;"><span>&#x25fc;</span></div>
<div style="stroke-color: green; -webkit-text-stroke-color: blue;"><span>&#x25fc;</span></div>
<div style="-webkit-text-stroke-color: blue; stroke-color: green;"><span>&#x25fc;</span></div>
<div class="stroke-color-class" style="-webkit-text-stroke-color: blue;">&#x25fc;</div>
</body>
</html>