css某个样式只在指定浏览器下生效

例如:此样式只在火狐浏览下生效

<style>
   @-moz-document url-prefix(){
        //你的样式
       .vxe-cell--label{
          display: block;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
    }
</style>

猜你喜欢

转载自blog.csdn.net/weixin_40992252/article/details/142876005