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

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

<div id="column">first line (blue)<br>second line</div>