html 输入按钮默认边框 css
提交输入类型通常在侧角有一个“斜面”3D。如何使用css使其看起来简单?
the submit input type, normally has a 'bevel' 3D on the side corner. how to use css to make it plain look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该适合您的需要:
或者如果您想要更具体:
或者您可以使用内联样式:
This should work for what you need:
or if you wanted to be more specific:
or you could use an inline styling:
向按钮添加任何类型的边框都会删除内置“3D 效果”的浏览器。类似下面的内容将添加一个简单的灰色边框。
请注意,默认按钮样式取决于浏览器和操作系统,因此如果您想完全控制页面的外观,那么应用您自己的样式绝对值得。
Adding any kind of border to the button will remove the browsers built in '3D effect'. Something like the following will add a simple grey border instead.
Note that the default button styling is dependant on both browser and operating system, so it is definitely worth applying your own styling if you want total control of the look of your page.