您的位置:首页 > Web前端 > HTML

HTML-★★★格式与布局fixed/absolute/relative/z-index/float★★★

2016-10-28 23:08 387 查看
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>格式与布局</title>
<style type="text/css">
.a
{
background-color:#999; width:100px; height:100px; margin:10px;    float:left;
}
</style>
</head>

<body>
<div style="background-color:#0F0; width:300px; height:400px;">
<div class="a">AA</div>
<div class="a">BB</div>
<div class="a">CC</div>
<div class="a">DD</div>
<div class="a">EE</div>
</div>
</body>


View Code

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: