LoginSignup
2
1

More than 5 years have passed since last update.

Rails のlink_toメソッドでclassとidの使い方で気をつけること

Posted at

実にシンプル です。
classが先、idが後です。

以下は、マテリアルデザインで右下のボタンを作り、そこにアクションを設定した場合です。

   <div class="fixed-action-btn" style="bottom: 45px; right: 24px;">
     <%= link_to root_path, { class: :"btn-floating btn-large blue" }, id: "xrosriver1", method: :get do %>
       <i class="large material-icons">add</i>
     <% end %>
   </div>

以上

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1