Rails 中的多行表单提交按钮
有没有办法让我将
<%= f.submit "Save Draft", :class => "button" %>
按钮文本分成两行?
我想说
“保存草稿”->大文本
,稍后完成 ->这条线尺寸较小
Is there a way for me to get the
<%= f.submit "Save Draft", :class => "button" %>
Button text onto two lines?
I'd like it to say
Save Draft -> big text
and finish later -> this line smaller sized
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。
您不能将两种不同的字体大小应用于同一个按钮,但是您可以为代表 css 中按钮的表单类提供鼠标悬停事件来更改颜色,或者您可以使用 jQuery 来悬挂文本和颜色
不知道是什么jQuery 代码看起来像,但更多信息可以在鼠标悬停事件
http://api.jquery.com 上找到/鼠标悬停/
No.
You can not apply two different font sizes to the same button, you could however supply a mouse hover event for the form class that represents the button in css to change the colour or you could use jQuery to hange the text and colour
Not sure what the jQuery code would look like though but more info can be found here on the mouseover event
http://api.jquery.com/mouseover/