前端 盒子模型 (html)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>盒子模型</title>
		<!--内部样式-->
		<style type="text/css">
			*{  /* *:通配符,指所有的标签.初始化所有标签的内边距和外边距 */
				margin:0;
				padding:0;
			}
			.box{
				width: 300px;
				height: 450px;
				border: 1px solid red;
				/*padding:50px 40px 30px 20px;*/<!--分别对应上,右,下,左顺时针方向-->
				padding: 50px 30px 10px;/* 分别对应上,左右,下 */
				/* padding:50px 20px;分别对应上下,左右 */
				/* padding:50px;四个方位都是50px */
				/* margin-top:100px;
				margin-bottom:50px;
				margin-left:100px; */
				/* margin:50px; */
			}
			.box2{
				width:200px;
				height:200px;
				border:1px solid green;
				/* margin:auto; */ /* 盒子水平居中 */
			}
		</style>
	</head>
	<body>
		<!-- 盒子模型:内容dontent,边框border,内边距padding-->
		<!--方位词:top上,bottom下,right右,left左,center居中-->
		<!--内边距padding:会把盒子撑大-->
		<!-- 外边距margin:盒子与盒子之间的距离 -->
		<!-- 外边距的运用: -->
		<div class="box">
			hello box!
		</div>
		<div class="box2">
			hello box2
			</div>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值