header-aside-content布局-手写css
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.top{
width:100%;
height:60px;
background-color: #ccc;
}
.left,.right{
min-height:600px;
}
.left{
float:left;
width:200px;
background-color: #ddd;
}
.right{
margin-left: 200px;
background-color: #aaa;
}
</style>
</head>
<body>
<div class="top">top</div>
<div class="left">left</div>
<div class="right">right</div>
</body>
</html>

本文标题:header-aside-content布局-手写css
本文链接:https://www.haomeiwen.com/subject/zxzlyxtx.html
网友评论