blob: ecc2ca825db6b6fe71eaf31cd92c12cb31eced75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<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>
|