CSS

层叠样式表

给html添加样式

网页中嵌套(style)样式

将style写在标签内属于行间样式

 1.行内样式:把style当作标签来用,写在head之间

2.把style当作属性来用,(写在标签内)

3.把style当作文件来用

CSS引入方式

1.文本的样式text

A. 颜色 color:red;

B,文本对齐方式:text-align:left(左对齐)/center(居中)/right(右对齐)/justify(两端对齐);

C.文本修饰: text-decoration:none/overline/underline/line-through;

      None(什么也没有)  overline(上划线)  line-through (删除线) underline(下划线)

D,文本缩进 例如: text-indent:20px;

2.字体font

A.大小 font-size:20px;

B,颜色 color:red; font-color:red;x(谨记)

C,形状 font-style:normal/italic/oblique/inherit

D,字形:font-family:"微软雅黑”;

E,加粗:font-weight:bold;后面 也可跟数字