在 CSS Cascading and Inheritance 模块中,解释了带有 !important 注释的声明比起源于动画的样式更重要。
当我自己进行测试时,我意识到没有任何样式可以防止动画运行时覆盖 css 属性。
例子:
.box{
background-color: green!important;
animation: animacion 2s;
height: 50px;
width: 50px;
}
@keyframes animacion {
from{
background-color: yellow;
}
to{
background-color: blue;
margin-left: 50px;
}
}
<div class="box"></div>
在此示例中,当动画运行时,background-color
会更改。
如果我使用animation-fill-mode: forwards
元素保留最后一个关键帧中给出的值,则该值将用!important
.
在我看来,这种行为与规范所说的相反,或者我可能不明白他们想说什么。