【问题标题】:How to remove the yellow highlight when html button is clicked [duplicate]单击html按钮时如何删除黄色突出显示[重复]
【发布时间】:2021-05-12 19:27:54
【问题描述】:

我想删除在智能手机中单击 HTML 按钮时出现的黄色框。

【问题讨论】:

标签: javascript html css responsive


【解决方案1】:

您可以使用大纲方法来获得所需的工作。

<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>

【讨论】:

    猜你喜欢
    • 2020-02-18
    • 2013-08-08
    • 1970-01-01
    • 1970-01-01
    • 2017-11-18
    • 1970-01-01
    • 2014-11-06
    • 2020-11-12
    • 1970-01-01
    相关资源
    最近更新 更多