美文网首页
IE不支持unset

IE不支持unset

作者: NemoExpress | 来源:发表于2020-12-09 11:08 被阅读0次

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

    相关文章

      网友评论

          本文标题:IE不支持unset

          本文链接:https://www.haomeiwen.com/subject/xixhgktx.html