怎么去除input标签button按钮的边框
时间: 2023-10-09 19:15:04 浏览: 261
html5去掉输入框边框
4星 · 用户满意度95%
可以通过CSS样式来去除input标签button按钮的边框。具体做法如下:
```css
input[type="button"], input[type="submit"], input[type="reset"] {
border: none; /* 去除边框 */
outline: none; /* 去除点击时的轮廓线 */
}
```
这样就可以去除按钮的边框了。你也可以根据需要设置其他样式,比如背景色、文字颜色等。
阅读全文