LoginSignup
0
0

More than 3 years have passed since last update.

Bootstrapのhtml見本をhtml.erbで使うときの書き方変換いろいろ【超初心者】

Last updated at Posted at 2021-02-25

よく忘れるので書き方
ボタンとフォームの書き方

ボタン
#html
<button type="button" class="btn btn-primary">投稿ボタン</button>

#html.erb form_withを使ってるとき
<%= f.submit '投稿ボタン', class: "btn btn-primary" %>
フォーム
#html
<div class="mb-3">
  <label for="content" class="form-label">投稿内容</label>
  <textarea class="form-control" id="content" rows="3" placeholder="薄くフォームに表示されるやつ"></textarea>
</div>

#html.erb form_withのフォーム
<div class="mb-3">
  <%= f.label :content, "投稿内容" %>
  <%= f.text_area :content, class: "form-control m-3", rows: 3, placeholder: "薄くフォームに表示されるやつ" %>
</div>

f.text_fieldだとフォームの大きさを変えられないので注意

順次忘れやすいやつを入力していきます

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