/* 强制改变优先级用important,important优先级最高,设置body标签里所有文字为黑色 */
* {
color:black !important;
}
5. CSS属性CSS有N多属性,根据继承性,主要可以分为2大类
1》可继承属性:
父标签的属性值会传递给子标签
一般是文字控制属性
body {
font-size: 30px;
color: red;
/*字体加粗*/
font-weight: bolder;
}
下面列举一些可继承属性(红色表示常用):
visibility(隐藏内容)、cursor(光标样式)
/*去掉标签的下划线*/
text-decoration: none;
text-indent(文字首行缩进)、text-align(内容水平居中)
div {
background-color: red;
width: 300px;
height: 300px;
/* 隐藏标签的内容和结构 */
/* display: none; */
/* 隐藏标签的内容,保留标签的结构,占位 */
visibility: hidden;
/*规定光标的样式(光标移到div上显示):pointer手指(跳转/超链接用);crosshair十字架(画图/画区域用)*/
cursor: pointer;
}
p {
color: blue;
/* 段落首行缩进(根据像素/比例进行缩进)*/
text-indent: 3%;
}
ul {
/*列表样式属性:none无;square方块;circle圆*/
list-style:square;
}
2》不可继承属性
父标签的属性值不能传递给子标签
一般是区块控制属性
下面列举一些不可继承属性(红色表示常用):