blob: 79d90b89b6523ccb64502d1b43b6b0a054148cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1520442">
<style>
#outer {
display: list-item;
list-style-position: inside;
columns: 2;
column-fill: auto;
height: 100px;
font-size: 1px;
direction: rtl;
}
#inner {
float: right;
width: 100%;
height: 150px;
}
</style>
<div id="outer">
<div id="inner"></div>
x
</div>
|