css样式表

1.css(cascading style sheets)样式表

3.css样式表的特性

继承性

层叠性

优先级

4.样式优先级

浏览器缺省设置

外部样式表或内部样式表

——就近优先

内联样式

5.!important表示优先级最高

div{background-color: red;

border:dashed;

width: 500px;

height: 200px ;

background-color:blue!important;}结果为蓝色

通用选择器,显示为一个星号(*)

margin(外边距)第二个参数auto表示左右居中

padding(内边距)

line-height(行高)=控件高度时文字垂直居中

通用选择器*

元素选择器

类选择期.

id选择器#

后代选择器(空格)

群组选择器,

子元素选择器>

伪类选择器

solid(实线)

dashed(虚线)

CSS的Position很重要,有以下几个值:static,relative,absolute,fixed。

text-decoration:none(去掉超链接的下划线)

text-decoration:underline(加下划线)

text-decoration:overline(上划线)

text-decoration:line-through(中划线)

text-decoration:blink(闪烁)

你可能感兴趣的:(css样式表)