IE不支持unset

2020-12-09  本文已影响0人  NemoExpress

有个绝对定位的属性需要复写top:0变成bottom:0

top:unset
bottom:0

上述写法IE浏览器不兼容uset
解决方案

top: auto !important;
bottom: 0;

其他方案关于unset的兼容写法,使用css3的属性检测,使用媒体查询

.el-tooltip{
  min-width: inherit // 
}
@supports (min-width: unset){
    .el-tooltip{
       min-width: unset
  } 
} 

备忘:unset就是不设值的意思,如果这个css属性是能继承的,那么就相当于inherit,否则相当于initial,你可以自己根据这属个属性是否能继承来选择。

上一篇下一篇

猜你喜欢

热点阅读