blob: bf8eceee32b1142f3a8690ef1c82664e2a2901ef (
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
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
ol {
list-style-position: inside;
column-width: calc(0px);
}
li {
float: left;
}
li:last-child {
padding-block-end: calc(50%);
float: none;
}
</style>
<script>
function boom(){
document.getElementById("tgt").style.display = "block";
}
</script>
</head>
<body onload=boom()>
<ol>
<li id=tgt></li>
<li></li>
<li></li>
</ol>
</body>
</html>
|