<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css的语法规范</title>
<style>
p {
color: coral;
font-size: 12px;
}
/* 展开式风格书写,采用小写字母 */
/* 空格规范:1.属性值前面,冒号后面保留一个空格;2.选择器(标签)和大括号中间保留空格 */
</style>
</head>
<body>
</body>
</html>