【无标题】

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>盒子模型</title>
		<style>
			*{   /* 通配符:指所有标签 */
				margin: 0;
				padding: 0;
			}/* 初始化所有标签的外边距和内边距,写在样式中最开始的位置 */
			.box1{/* solid实线,dotted点线,dashed虚线 */
				border:5px dotted rgb(241,23,189);/* 边框:大小px 实线 颜色 */padding:10px ;/* nei边距 */
				/* top上,bottom下,left左,right右,margin外边距 */
				width: 200px;
				height: 200px;
			}
			.box2{
				border:3px rgb(167,89,246) solid;
				border-top:5px solid #aaaaff;padding:10px ;
				border-bottom:5px #ff5500 dashed;
				width: 200px;
				height:200px;
				font-size:30px;
				/* pandding-top:25px;
				pandding-left:25px; */
				/* 复合写法顺序为四个值:上右下左;三个值:上 (左右)下;俩个值:(上下) (左右)*/
				padding: 10px 30px;
			}
			.box3{
				width: 500px;
				height: 500px;
				background-color: #aaaaff;
				margin: 10px auto 0;/* 水平居中,设置块级盒子,给盒子左右外边距设置为auto */
				margin-bottom: 80px;
			}
			.box4{
				width: 300px;
				height: 300px;
				background-color: #ff5500;
				margin-top: 120px;
			}
			.wbox{
				width: 700px;
				height: 700px;
				background-color: #ff5500;
				margin-top: 100px;
				/*3. overflow: hidden; */
				/*2. padding-bottom: 100px; */
				 /* 1.border:  1px solid red; */
			}
			.nbox{
				
				width: 500px;
				height: 500px;
				background-color: aquamarine;
				margin: 100px 100px;
			}
			/* 1.相邻俩个块级盒子外边距效果取最大的盒子元素 ,所以一般只给一个盒子设置外边距
				2.嵌套的块级盒子外边距的塌陷
				解决方法:1.给父盒子加边框
						2.给大盒子加内边距(可能导致其盒子被撑大)
						3.为父盒子加overflow:hidden*/
		</style>
	</head>
	<body>
		<div class="box1">hello world</div><!-- div盒子标签 -->
		<div class="box2">hello box</div>
		<div class="box3"></div>
		<div class="box4"></div>
		<div class="wbox">
			<div class="nbox"></div>
		</div>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值