Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8896

Node.jsでsubmitボタンをFont Awesomeにする方法

$
0
0

プログラミング勉強日記

2020年9月21日
Node.jsのejsファイルでformでデータを送るときにFont Awesomeを使おうとするときに試行錯誤したので備忘録として書いておく。

現在と目標

 現在は以下のように「削除」ボタンになっている。
image.png

現在
<formaction="/delete/<%= user.id %>/<%= users[0].id %>"method="post"><inputtype="submit"value="削除"></form>

 それを以下のようにFont Awesomeを用いてアイコンにしたい。
image.png

解決方法

解決方法
<formaction="/delete/<%= user.id %>/<%= users[0].id %>"method="post"><buttontype="submit"class="btn"><iclass="fas fa-trash-alt"></i></button></form>

 個人的にはアイコンの周りの線(ボタンの部分)を消したいが、うまくできないのでこれがうまくできたらまた記事にしようと思う。


Viewing all articles
Browse latest Browse all 8896

Trending Articles