summaryrefslogtreecommitdiffstats
path: root/layout/reftests/columns/first-line-first-letter-ref.html
blob: bdf5189772b9b7af688d4c45dbb685c62d479cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset="UTF-8">

<style>
div {
  border: 1px solid red;
  width: 400px;
}
div::first-letter {
  font-size: 200%;
}
div::first-line {
  color: blue;
}
</style>

<div>first line (blue)<br>second line</div>