summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/multicol-list-item-008-ref.html
blob: c0abd5164cdc42765020d387a8a8a3383463059c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<style>
#columns {
  font-size: 20px;
  line-height: 50px;
  columns: 2;
  column-fill: auto;
  width: 200px;
  height: 100px;
  margin-left: 50px;
}
#li {
  display: list-item;
}
</style>
<div id="columns">
  <div style="height: 100px">Normal</div>
  <div id="li">
    <div>List item</div>
  </div>
</div>