Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/43.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
android中蓝色的HTML按钮_Html_Css_Button - Fatal编程技术网

android中蓝色的HTML按钮

android中蓝色的HTML按钮,html,css,button,Html,Css,Button,我有一个按钮,在android智能手机中,当点击按钮时,整个按钮上会出现一个蓝色的选定颜色,而不是在桌面浏览器中。我试过提纲:没有,但什么也没有 button:active { outline: none !important; } 您可以尝试此代码作为电池解决方案 button:hover, button:active, button:focus { outline: none; } 请你加一些代码好吗?

我有一个按钮,在android智能手机中,当点击按钮时,整个按钮上会出现一个蓝色的选定颜色,而不是在桌面浏览器中。我试过提纲:没有,但什么也没有

button:active {
       outline: none !important;
        }

您可以尝试此代码作为电池解决方案

button:hover, 
button:active, 
button:focus {
  outline: none;
}

请你加一些代码好吗?