基础知识01
颜色常见取值
颜色表示方式 | 属性值 |
---|---|
关键词 | red、green |
rgb表示法 | rgb(0,0,0) |
rgba表示法 | rgba(255,255,255,0.5) |
十六进制表示法 | #000000 #ff0000 |
注意
- rgba表示含义:
红绿蓝三原色+a表示透明度 取值范围为0-1
标签水平居中方法
属性margin:0 auto
<!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>Document</title>
</head>
<style>
div{
width: 300px;
height: 300px;
background-color: aliceblue;
margin: 0 auto;
}
</style>
<body>
<div></div>
</body>
</html>