gpt4 book ai didi

html - 向 View 中 rails 显示的文本添加一个类

转载 作者:太空宇宙 更新时间:2023-11-03 17:33:53 25 4
gpt4 key购买 nike

非常直接..

我如何向这样的东西添加一个类

<h2><%= guide.title %></h2>

哪个只是显示文本?

最佳答案

你必须将它包裹在一些容器中:

<div class="my_class"><%= guide.title %></div>

您将使用的容器取决于要使用给定文本的上下文。

更新:

由于文本已经包裹在 <h2> 中你可以这样做:

<h2 class='my_class'><%= guide.title %></h2>

另一个更新:

如果您想尽量减少 View 中纯 html 的数量,您总是可以这样做:

<%= content_tag :h2, class: 'my_class' do %>
<%= guide.title %>
<% end %>

关于html - 向 View 中 rails 显示的文本添加一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24004695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com