css – 如何从输入按钮删除轮廓边框

前端之家收集整理的这篇文章主要介绍了css – 如何从输入按钮删除轮廓边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当点击其他的地方边框消失,尝试onfocus无,但没有帮助,如何使丑陋的按钮边框消失时点击?

~~~~

<head>
<style>
input[type="text"]
{
width:150px;
display:block;
margin-bottom:10px;
background-color:yellow;
}
input[type="button"]
{

width:120px;

height:60px;
margin-left:35px;
display:block;
background-color:gray;
color:white;
border: none;

}
</style>
</head>
<body>

<form name="input" action="" method="get">
Firstname:<input type="text" name="Name" value="Peter" size="20">
Lastname:<input type="text" name="Name" value="Griffin" size="20">
<input type="button" value="Example Button">

</form>
</body>
</html>

解决方法

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

使用outline:none;我们可以在chrome中删除该边框

尝试这个

原文链接:https://www.f2er.com/css/221999.html

猜你在找的CSS相关文章