-
Notifications
You must be signed in to change notification settings - Fork 0
/
css20.html
29 lines (29 loc) · 1.53 KB
/
css20.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css 水平对齐</title>
<style>
.center { margin:auto;width:70%;background-color:#00ffff;} /*中心对齐,使用margin属性*/
.right {position:absolute;right:0px;width:300px;background-color: #b2ff99;}/*使用position属性设置左,右对齐*/
.left {float:left;width:300px;background-color:greenyellow;} /*使用float属性设置左,右对齐*/
</style>
</head>
<body>
<div class="center">
<p>
</p> In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.
<p>'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'
</p>
</div>
<p><b>注意:</b>使用margin:Auto无法兼容IE8,除非!doctype已经声明.</p>
<div class="right">
<p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</p>
<p>'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'</p>
</div>
<div class="left">
<p>In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.</p>
<p>'Whenever you feel like criticizing anyone,' he told me, 'just remember that all the people in this world haven't had the advantages that you've had.'</p>
</div>
</body>
</html>