CSS基本样式
选择器
- 标签选择器
- 类选择器
- id选择器 ,id具有唯一性
- 优先级 : id>类>id
字体样式
- 字体类型:font—family
- 字体大小: font—size
- 字体风格: font—style(italic—斜体)
- 字体粗细:font—weight(定义粗体字符,范围是100~900)
文本样式
- 文本颜色 color
- 水平对齐方式 text—align
- 首行文本缩进 text—indent
- 设置文本的行高 line—height
- 装饰:文本下划线(underline) 文本上划线(overline) 穿过文本的一条线(line—through)
鼠标样式
- 模式光标 defalut
- 手指 pointer
- 加载 wait
- 问号 help
- 指示文档 text
- 十字 crosshair
背景样式
- 背景颜色 background—color
- 背景图片重复 background—repeat(不重复 no—repeat 垂直重复 repeat—y 水平重复 repeat—x 默认重复 repeat)
- 背景图片地址 background—image:url
- 列表标记定位:list—style—position
列表样式
- 无序列表:list—style—type
- 自定义列表头为标记图片:list—style—image
CSS伪类
- 单机访问前:a:link{}
- 单机访问后:a:visited{}
- 鼠标悬浮:a:hover{}
- 单机未释放:a:active{}