本文介绍了移除蓝色“选择的”在按钮的概述的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一些按钮使用< button> ,当点击获得蓝色选择的颜色!

I have some buttons using <button>, which when clicked get a blue selected color!

是否有删除此功能的方法?

Is there a way to remove this feature?

推荐答案

这是每个浏览器的默认行为;您的浏览器似乎是Safari,在Google Chrome中是橙色的!

That is a default behaviour of each browser; your browser seems to be Safari, in Google Chrome it is orange in color!

使用此功能可以消除此效果:

Use this to remove this effect:

button {
  outline: none; // this one
}

这篇关于移除蓝色“选择的”在按钮的概述的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:55