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