nuonuo-D
发现双击了element-ui的el-radio-button之后,会出现蓝色的边框,最后上网搜了一下,得到解决方法:
.container{
  /*双击文字、input等,出现的蓝色底色,如何去除*/
  -moz-user-select:none;/*火狐*/
  -webkit-user-select:none;/*webkit浏览器*/
  -ms-user-select:none;/*IE10*/
  /*-khtml-user-select:none;!*早期浏览器*!*/
  user-select:none;
}

参考自:https://blog.csdn.net/var_dz/article/details/78963012 

分类:

技术点:

相关文章:

  • 2021-07-10
  • 2022-02-07
  • 2022-12-23
  • 2021-05-15
  • 2021-04-09
  • 2022-12-23
  • 2021-06-13
  • 2021-12-10
猜你喜欢
  • 2021-11-17
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
  • 2022-02-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案