HTML之层div标签
程序员文章站
2022-05-28 09:02:26
...
层div标签
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
/*CSS内容*/
.top{
height:80px;
width:100%;
/*背景颜色*/
background-color: yellow;
}
.tips{
height:20px;
width:100%;
/*背景颜色*/
background-color: green;
}
.center{
height:400px;
width:100%;
/*背景颜色*/
background-color: aqua;
}
.bottom{
height:20px;
width:100%;
/*背景颜色*/
background-color: chocolate;
}
.login{
height:350px;
width:240px;
/*背景颜色*/
background-color: floralwhite;
/*相对定位*/
position: relative;
left: 550px;
top: 10px;
}
</style>
</head>
<body>
<!--
作者:offline
时间:2019-12-23
描述:层div标签
div本身是没有任何的意义
作用;将网页进行模块化的划分
-->
<!--头部模块-->
<div class="top"></div>
<!--中间提示-->
<div class="tips"></div>
<!--中间的展现-->
<div class="center">
<div class="login"></div>
</div>
<!--底部模块-->
<div class="bottom"></div>
</body>
</html>
效果展示