css 代码
选择器{
属性名:属性值
}
有三种方式,分别为:行内样式,内部样式,外部样式。
直接写在HTML标签内,写于style属性当中
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div style="background:red;width:15px;height:15px;"></div>
</body>
</html>
写在头部标签内,置于style标签内部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.exp{
height: 150px;
width: 200px;
background-color: #123456;
box-shadow: 0 0 8px #132478;
}
</style>
</head>
<body>
<div class="exp"></div>
</body>
</html>
在head中用link标签引入,置于CSS文件中
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="exp"></div>
</body>
</html>
css 代码
.exp{
height: 30px;
width: 20px;
background-color: #123456;
box-shadow: 0 0 1px #132478;
}
css 代码
.exp{
background: #123444; /*背景色,注释用此符号*/
height: 90px;
width: 80px; //CSS中的注释不能用此符号,和HTML有所不同
}
在写法上,浏览器的私有属性放在前面,标准属性放在后面。私有属性需要加前缀:<chrome/safari>加-webkit-,<firefox>加-moz-,<ie>加-ms-,<opera>加-o-。
<'font-size'> <'font-family'>
合法值:
12px arial
不合法值:
12px 或者 arial 12px
<length>&&<color>
合法值:
green 2px 或者 2em blue
不合法值:
blue 或者 5em
underline||overline||linethrough||blink
合法值:
underline 或者 overline underline
<color>|transparent
合法值:
#123456 或者 transparent
不合法值:
#aabb33 transparent
bold [thin||<length>] 合法值:
bold thin 或者 bold 3px
<length> 只能出现一次
合法值:
1px 或者 10em
不合法值:
1px 3em 5px
<color-stop>[,<color-stop>]+
合法值:
#fff,red,yellow 或者 blue,red 50%,black
不合法值:
#123456
inset?&&<color>
合法值:
inset #123445 或 #abcd33
<length>{2,4} 最少出现两次,最多出现四次
合法值:
1px 3em 或者 1px 3px 5em
不合法值:
3px
<time>[,<time>]*
合法值:
1s 出现0次
1s,5ms 出现1次
<time># 相当于 <time>[,<time>]*
合法值:
2s,4s,8s
不合法值:
2s 4s
@media 响应式布局
@keyframe 描述动画的中间步骤
@font-face 引入外部字体