blob: f23a641ffadac4543b31098980859c9da12ca33b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<style>
div:first-letter {
color: green;
font-size: 2em;
}
</style>
This test is successful if the first letter is green.
<div>
<span>Green</span>
</div>
|