实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div.container
6
{
7
width:30em;
8
border:1em solid;
9
}
10
div.box
11
{
12
box-sizing:border-box;
13
-moz-box-sizing:border-box; /* Firefox */
14
width:50%;
15
border:1em solid red;
16
float:left;
17
}
18
</style>
19
</head>
20
<body>
21
22
<div class="container">
23
<div class="box">This div occupies the left half.</div>
24
<div class="box">This div occupies the right half.</div>
25
</div>
26
27
</body>
28
</html>
29