x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
body {
7
margin: 0;
8
padding: 0;
9
}
10
11
.container {
12
position: relative;
13
width: 100%;
14
}
15
16
.right {
17
position: absolute;
18
right: 0px;
19
width: 300px;
20
background-color: #b0e0e6;
21
}
22
</style>
23
</head>
24
<body>
25
<div class="container">
26
<div class="right">
27
<p><b>注意: </b>当使用浮动属性对齐,总是包括 !DOCTYPE 声明!如果丢失,它将会在 IE 浏览器产生奇怪的结果。.</p>
28
</div>
29
</div>
30
31
</body>
32
</html>