英文:
Remove input effects
问题
我试图去掉 input
元素上的效果,使其变为平的。我想要移除这个,边框上的 3D 效果。以及这个,移除 "onclick" 效果。
在 onclick
上,我尝试了以下代码:
input:focus {
border: none;
}
但是没有起作用。
英文:
I trying to remove input
effects, to make input
element flat. I want to remove this, 3d effect on border. And this , remove "onclick" effect.
At onlick
I tried to use:
input:focus {
border: none;
}
But not, worked.
答案1
得分: 1
请在您的代码中尝试这种样式,不要使用"border: none;"样式。
input:focus{
outline: none;
}
<input type="text" placeholder="Name">
英文:
Plz try this style in your code and don't use border: none; style.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-css -->
input:focus{
outline: none;
}
<!-- language: lang-html -->
<input type="text" placeholder="Name">
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论