0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Bootstrap][Font Awesome]文字+アイコンをリンクにする

Last updated at Posted at 2021-06-29

こんな感じのナビゲーションバーにリンクを埋め込みます。
お家、クリップ、人のアイコンはFontAwesomeで取り入れています。

スクリーンショット 2021-06-29 10.04.48.png

まず、リンクなしの状態。

<ul class="navbar-nav ml-auto">
    
    <li class="nav-item mr-3"><i class="fas fa-home">About</i></li>
    <li class="nav-item mr-3"><i class="fas fa-paperclip">About</i></li>
    <li class="nav-item mr-3"><i class="fas fa-user-plus">sign up</i></li>
    <li class="nav-item"><i class="fas fa-sign-in-alt">login</i></li>
</ul>

リンクを埋め込む

<ul class="navbar-nav ml-auto">
    
    <li class="nav-item mr-3"><%= link_to "Home","/",class:"fas fa-home text-light" %></li>
    <li class="nav-item mr-3"><%= link_to "About","/home/about",class:"fas fa-paperclip text-light" %></li>
    <li class="nav-item mr-3"><%=link_to "sign up",new_user_registration_path,class:"fas fa-user-plus text-light" %></li>
    <li class="nav-item"><%=link_to"log in",new_user_session_path,class:"fas fa-sign-in-alt text-light" %></li>
</ul>

参考にさせていただいた記事

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?