blob: 2acfa00b99c061401855fe22207660bcb04f4818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<title>flexbox | multicol on flexbox items</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {background: blue;}
p {
font-family: ahem;
background: yellow;
column-rule: 1em solid lime;
columns: 2;
margin: 0 auto;
width: 200px;
}
</style>
<div>
<p>
one two three four five
one two three four five
one two three four five
</p>
</div>
|