css样式表优先级最高前端CSS优先级样式设置important
!important 的使⽤。
!important⽅式来强制让样式⽣效,但并不推荐使⽤。因为如果过多的使⽤!important会使样式⽂件混乱不易维护。万不得已可以使⽤!important
现在选择的是类选择器 spe2的样式
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<style>
p{
color: red;
font-size: 30px;
}
.spe1{
color: yellow;
font-size: 40px;
}
.spe2{
color: green;
font-size: 40px;
}
</style>
</head>
<body>
<div>
<p class="spe1 spe2">我是什么颜⾊</p>
<p class="spe1 spe2">我是什么颜⾊</p>
</div>
</body>
对选择器的样式设置 !important ,这个样式马上应⽤
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<style>
p{
color: red !important;
font-size: 30px !important;
}
.spe1{
color: yellow;
font-size: 40px;
}
.spe2{
color: green;
font-size: 40px;
}
</style>
</head>
<body>
<div>
<p class="spe1 spe2">我是什么颜⾊</p>
<p class="spe1 spe2">我是什么颜⾊</p> </div>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。