blob: 3fbaee5d52082671aea274795defc687a75e4c3f (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-size: 0.875em;
line-height: 1.30em;
font-family: Arial;
}
p, ul, li {
margin: 0;
padding: 0;
background-color: rgb(235, 235, 235);
}
ul { column-count: 2;
background-color: rgb(255, 200, 200);
}
li { margin-left: 17px }
.wrapper {
background-color: rgb(255, 0, 155); max-width: 910px;
border: 1px solid green;
}
.column {
width: 73%;
padding: 20px 60px 20px 40px;
box-sizing: border-box;
background-color: rgb(0, 95, 255);
}
.img {
float: left;
width: 261px;
height: 150px;
background-color: rgb(88, 20, 100);
}
</style>
</head>
<body>
<div class="wrapper">
<div id="colEle" class="column">
<ul>
<li>
<p>123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123</p>
</li>
<li>
<p>123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123</p>
<div class="img"></div>
</li>
</ul>
</div>
</div>
</body>
</html>
|