Answers for "rails image_tag"

2

rails image tag

<%= image_tag 'icon.png', alt: 'icon' %>
# => <img src='app/assets/images/icon.png' alt='icon' />
Posted by: Guest on January-27-2021
0

rails image tag data attribute

<%= image_tag 'filename', title: "title", class: "class", data: { description: '..', title: '..' }  %>
Posted by: Guest on March-10-2021

Browse Popular Code Answers by Language