-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-copy-sizing.html
34 lines (34 loc) · 1.19 KB
/
list-copy-sizing.html
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>
<style>
</style>
</head>
<body>
<div>
<ol style="margin-top: 40px;">
<li>this is not area selected text</li>
<li>this is area selected text</li>
<li>this is area selected text</li>
</ol>
<div style="margin-top:-19px;">this is area selected text</div>
</div>
<br/>
<br/>
<br/>
<br/>
<div style="contain: strict; height: 88px; width: 524px;">
<div style="display: grid;
grid-template-columns:40px;
grid-template-rows:19px calc(88px - 3 * 19px - 16px);">
<ol start="2" style="margin:0; padding:0; grid-column:2;">
<li>this is area selected text</li>
</ol>
<ol start="3" style="margin:0; padding:0; grid-column:2;grid-row:2;">
<li>this is area selected text</li>
</ol>
<div style="grid-column:1 / span 2; grid-row:3">this is area selected text</div>
</div>
</div>
</body>
</html>