如何使用CSS拉伸表单提交按钮?
如何使用 CSS 拉伸表单提交按钮? 我想在按钮内的文本和按钮左右端之间有某种水平填充。这可能吗?如果可能的话,如何实现?
使按钮更漂亮(不使用图像)的提示也非常受欢迎:-)。
how do I stretch a form submit button using CSS?
I'd like to have some kind of horizontal padding between the text inside the button and the button left and right end. Is this possible, and if so, how?
Tips for making the button prettier (without using images) are also much appreciated :-).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
增加按钮的
宽度
。CSS:
Increase the
width
of the button.CSS:
您可以像任何其他 HTML 元素一样设置它的样式,例如为其指定
display:block
和width:100%
。You can style it like any other HTML element, for example give it
display:block
andwidth:100%
.CSS:
在 IE6 中不起作用,因为它无法读取 type="submit" 选择器,但在 IE7/8 和所有其他浏览器上起作用。 >
CSS:
does not work in IE6 cause it does not read type="submit" selector, but works on IE7/8 and all other browsers.