Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一个文本字段,然后在其后面有一个按钮(占据整个屏幕),这样一旦点击按钮,文本字段的键盘就会消失。我的问题是,如何配置按钮属性以使按钮在被点击时不会闪烁蓝色?谢谢
可能您正在使用超链接作为按钮,并且一旦访问超链接的颜色就会改变,因此您可以使用 css 更改它
a:link {color:#FF0000;} /* unvisited link */ a:visited {color:#00FF00;} /* visited link */ a:hover {color:#FF00FF;} /* mouse over link */ a:active {color:#0000FF;} /* selected link */