HTML固定格式

固定格式

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>css定位</title>   标题
	<style type="text/css">  运用CSS定义样式
		*{/* 对浏览器默认的属性清零 */
			margin: 0;
			padding: 0;
		}
		# xxx{
		}
	</style>
</head>
<body>  主体部分
  <div id="container">
        <p>11111111</p>
    </div>
</body>
</html>

1.一般设置水平和垂直的属性值,先水平在垂直,右和下为正

在这里插入图片描述

posted @ 2022-10-08 01:20  昔痕  阅读(32)  评论(0编辑  收藏  举报