blob: 6813a767482e29f793fc060271faaf2181aa5f1f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Test: color-filter reference</title>
<link rel="author" title="Apple" href="http://www.apple.com/">
<style type="text/css">
.test
{
font: 120px sans-serif;
color: green;
margin: 100px 20px;
text-decoration: underline overline line-through;
}
.single
{
text-shadow: 150px 0 0 yellow;
}
.multiple
{
text-shadow: 150px 0 0 yellow, 300px 0 0 cyan;
}
</style>
</head>
<body>
<div class="test single">O</div>
<div class="test multiple">O</div>
</body>
</html>