blob: c77c2c2497b7d92cb81700499ce86ba6f3fba734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<link rel="match" href="multicol-list-item-008-ref.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: 80px">Normal</div>
<div id="li">
<div style="height: 10px"></div>
<div>List item</div>
</div>
</div>
|