user2805193
user2805193

Reputation:

Can you add two spans to "link_to"?

    <a href="#"><span>Ineffable</span><span>Evanescent Life</span></a>
    <a href="#"><span>Chatoyant</span><span>Assemblage Love</span></a>

I have the code above, how do I make it into link_to and include both spans at the same time ?

Upvotes: 0

Views: 37

Answers (1)

Tumas
Tumas

Reputation: 1727

Use link_to's block form:

<%= link_to "#" do %>
  <span>Ineffable</span><span>Evanescent Life</span>
<% end %>
<%= link_to "#" do %>
  <span>Chatoyant</span><span>Assemblage Love</span>
<% end %>

Upvotes: 1

Related Questions