css阶段

1、CSS(cascading Style sheet)称为层叠样式表

>2、 CSS字体样式属性

font-size:20px;
font-weight:"微软雅黑";
font-weight:bold; font-weight:400;
font-style:italic; 或者normal

3、字体缩写

font:font-style font-weight font-size font-family :(字体 字号不可省略 其他属性可不写)

4、css常用属性

color width height background
text-aign:center;
line-height:行高;
margin:0 auto;
text-align:left/right/center;
text-indent:2em;
text-decoration:none/underline/overline/line-through;
list-style:none;清除标签默认样式

5、css选择器

标签选择器 类选择器 id选择器 并集选择器 交集选择器 后代选择器 子代选择器 通配符选择器

6、css的3种引入方式

行内 内嵌 外链

7、注释

html注释

css注释

/* 里面的是注释的内容 */

你可能感兴趣的:(css阶段)