我似乎无法在我的HTML表单上的任何输入字段上四舍五入.我已经尝试将CSS样式表更改为:
* {
-webkit-border-radius: 4px !important;
-moz-border-radius: 4px !important;
border-radius: 4px !important;
-webkit-border-top: 4px !important;
-moz-border-top: 4px !important;
border-top: 4px !important;
-webkit-border-bottom: 4px !important;
-moz-border-bottom: 4px !important;
border-bottom: 4px !important;
}
Run Code Online (Sandbox Code Playgroud)
但这使得它无法看到顶部和底部线条.我正在从他们的网站直接复制代码,它只是没有正确格式化.我怎样才能解决这个问题?