Rails 中的多行表单提交按钮

发布于 2024-12-10 02:39:41 字数 179 浏览 0 评论 0原文

有没有办法让我将

<%= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把昨日还给我 2024-12-17 02:39:41

不。
您不能将两种不同的字体大小应用于同一个按钮,但是您可以为代表 css 中按钮的表单类提供鼠标悬停事件来更改颜色,或者您可以使用 jQuery 来悬挂文本和颜色

.button:hover {
    border: 1px solid #f00;
    background: #eef;
}

不知道是什么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

.button:hover {
    border: 1px solid #f00;
    background: #eef;
}

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文