有个绝对定位的属性需要复写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,你可以自己根据这属个属性是否能继承来选择。
网友评论