前言:
现在咱们对“html段落缩进标签”大致比较着重,你们都想要学习一些“html段落缩进标签”的相关资讯。那么小编在网摘上网罗了一些有关“html段落缩进标签””的相关资讯,希望小伙伴们能喜欢,咱们快快来学习一下吧!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内边距会在下一章中讲到。
标签: #html段落缩进标签