网站首页 > 基础教程 正文
CSS样式优先权
1.写法优先权
优先级依次是:行内样式表 > 内部样式表> 外部样式表。
2.选择符优先权
对于id 与 class 而言,id的定义优先于class 的定义。具有class属性的比没有class属性的优先权要大。
id > class > 类型选择符
样式继承
1.HTML 中的子标签会继承部分父标签的样式。
如: body { color:#ff0000;}那么页面中,body之下的所有标签及标签下的所有子标签的文本都将变成红色。
2. !important
在两行相同类型的css样式定义中,往往优先执行后面一个;
p{font-size:14px;font-size:20px;}
但是可以通过!important 语法,提升某一句样式表的重要性,使及优先执先 !important标注的语句。
p{font-size:14px !important;font-size:20px;}
css 代码注释,以 /* 开始 */ 结束。
如:/* body样式*/
body { margin:0px; padding:0px;}
/*LOGO样式*/
#logo{ ……}
/*导航样式结束*/
字体样式
1.字体
font-family设置文字名称,可以使用多个名称,或者使用逗号
分隔,浏览器则按照先后顺序依次使用可用字体。
例:Arial
p { font-family:'宋体','黑体'}
2.字号
font-size设置文字的尺寸
例:p { font-size:14px;}
3.字体加粗
font-weight : normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
例:p { font-weight:bold;}
4.斜体
font-style : normal | italic | oblique
例:p { font-style: normal; }
p { font-style: italic; }
p { font-style: oblique; }
5.下划线控制
text-decoration : none || underline || blink || overline || line-through
例:
p { text-decoration:overline;}
p { text-decoration:underline;}
p { text-decoration:line-through;}
6.字体样式缩写
font : font-style || font-variant || font-weight || font-size || line-height || font-family
例:
P {
font-style:italic;
font-weight:bold;
font-size:14px;
line-height:22px;
font-family:宋体;
}
也可以缩写的形式:
p { font:italic bold 14px/22px 宋体}
1.行高
line-height : normal | length
例:p{ line-height:25px;} p{ line-height:150%}
2.段落缩进
text-indent : length; p{ text-indent:4px;}
3.段落对齐
text-align : left | right | center | justify
对于text-aligh,不但是文本,对象中的其它元素也能够被text-align进行对齐方式的设置。
例:
p { text-align:right;}
p { text-align:center;}
4.文字间距
letter-spacing : normal | length
p{ letter-spacing:5px;}
关于margin外边距和padding内边距会在下一章中讲到。
- 上一篇: CSS知识点总结
- 下一篇: CSS中before 和after的用法
猜你喜欢
- 2024-12-02 CSS中before 和after的用法
- 2024-12-02 CSS知识点总结
- 2024-12-02 纯CSS实现鼠标悬停提示的方法(CSS小白第三期)
- 2024-12-02 CSS 伪元素的一些罕见用例
- 2024-12-02 JavaScript DOM修改(文本和样式)
- 2024-12-02 用 CSS 实现倾斜的背景颜色
- 2024-12-02 CSS样式优先级怎样划分?【CSS优先级规则】
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)