| <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> |