概述
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<!--适应-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>盒子模型</title>
<style type="text/css">
div{
width: 250px;
height: 100px;
border:1px solid #000000;
color: black;
font-weight: bold;
text-align: center;
margin-top: 10px;
padding-top: 10px;
margin-left: 3px;
}
div#d1{
position: relative;
float: left;
background-color: red;
}
div#d2{
position: relative;
float: left;
background-color: green;
}
div#d3{
position: relative;
float: left;
background-color: yellow;
}
div#d4{
position: relative;
float: left;
background-color: blue;
}
</style>
</head>
<body>
<div id="d1">
#d1
</div>
<div id="d2">
#d2
</div>
<div id="d3">
#d3
</div>
<div id="d4">
#d4
</div>
</body>
</html>
最后
以上就是美满缘分为你收集整理的CSS之盒子模型的全部内容,希望文章能够帮你解决CSS之盒子模型所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复