haikuwebkit/LayoutTests/fast/css-generated-content/002.html

13 lines
297 B
HTML

<html>
<head>
<style>
p.special:before { content: "Special: " }
p.special:first-letter { color: #ffd800; }
p.special:after { content: "[The End]" }
</style>
<head>
<body>
<p class="special">
The "S" to the left should be gold. This is testing :before used in conjunction with :first-letter.
</p>