發現雙擊了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