码迷,mamicode.com
首页 > Web开发 > 详细

css的margin与padding练习

时间:2020-01-08 17:27:46      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:html   color   width   margin   idt   pad   class   lan   round   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>margin</title>
<style>
body{
margin:0px;
}
.div1{
background-color: aqua;
height:300px;
width:300px;
border:1px solid greenyellow;
/*通过margin将100X100小盒子放在300X300大盒子中间*/
padding:200px 0px 0px 200px;
}
.div2{
background-color: blueviolet;
height:100px;
width:100px;
/*通过margin将小盒子放在大盒子中间*/
/*margin:100px;*/
}
</style>
</head>
<body>
<div class="div1">
<div class="div2"></div>
<!--<div class="div2"></div>-->
</div>

</body>
</html>

css的margin与padding练习

标签:html   color   width   margin   idt   pad   class   lan   round   

原文地址:https://www.cnblogs.com/startl/p/12167668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!