要求呈现图案:
法一:不建议
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> </title>
<style>
div:nth-child(1){
width: 100px;
height: 100px;
background-color: aqua ;
float: left;
}
div:nth-child(2){
width: 300px;
height: 100px;
background-color: purple ;
}
div:nth-child(3){
width: 100px;
height: 200px;
background-color: gold ;
float: left;
}
div:nth-child(4){
width: 100px;
height: 200px;
background-color: red ;
float: left;
}
div:nth-child(5){
width: 300px;
height: 100px;
background-color: black ;
}
div:nth-child(6){
width: 300px;
height:100px;
background-color: palegoldenrod ;
}
</style>
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>
法二:建议用此方法
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
.container{
width: 300px;
height: 300px;
background-color: gray;
}
.container .top{
width: 300px;
height: 100px;
background-color: blue;
}
.container .bottom{
width: 300px;
height: 200px;
background-color: purple;
}
.container .top .left{
width: 100px;
height: 100px;
background-color: red;
}
.container .bottom .left{
width: 100px;
height: 200px;
background-color: yellow;
float: left;
}
.container .bottom .center{
width: 100px;
height: 200px;
background-color: pink;
float: left;
}
.container .bottom .right{
width: 100px;
height: 200px;
background-color: green;
float: left;
}
.container .bottom .right .top{
width: 100px;
height: 100px;
background-color: gold;
}
.container .bottom .right .bottom{
width: 100px;
height: 100px;
background-color: greenyellow;
}
</style>
</head>
<body>
<div class="container">
<div class="top">
<div class="left"></div>
</div>
<div class="bottom">
<div class="left"></div>
<div class="center"></div>
<div class="right">
<div class="top"></div>
<div class="bottom"></div>
</div>
</div>
</div>
</body>
</html>
浮动练习(1)
pale_moonlight2024-10-19 20:24
相关推荐
狸克先生5 分钟前
如何用AI写小说(二):Gradio 超简单的网页前端交互baiduopenmap20 分钟前
百度世界2024精选公开课:基于地图智能体的导航出行AI应用创新实践loooseFish28 分钟前
小程序webview我爱死你了 小程序webview和H5通讯请叫我欧皇i40 分钟前
html本地离线引入vant和vue2(详细步骤)533_42 分钟前
[vue] 深拷贝 lodash cloneDeepguokanglun1 小时前
空间数据存储格式GeoJSONzhang-zan1 小时前
nodejs操作selenium-webdriver猫爪笔记1 小时前
前端:HTML (学习笔记)【2】brief of gali2 小时前
记录一个奇怪的前端布局现象Json_181790144803 小时前
电商拍立淘按图搜索API接口系列,文档说明参考