blob: b08c8a24f575f3ced2d202428019093510f3a650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<style>
div::first-letter {
color: green;
}
div::first-line {
color: blue;
}
</style>
<div style="font-size: 20px">My first letter should be green, and the whole line 20px in size</div>
|