1.Railsで掲示板を作ってみる
②RailsRoute/app/views/webnotes/_form.html.erbを以下の通り修正します。
<style>
table {
border-collapse: collapse;
border: solid 1px #000000;
}
td {
border: solid 1px #000000;
}
th {
border: solid 1px #000000;
color:white;
background:darkgray;
}
.col_table {width: 500px;}
textarea {
height: 200px;
width: 100%;
}
</style>
<%= form_with(model: webnote, local: true) do |form| %>
<% if webnote.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(webnote.errors.count, "error") %> エラー</h2>
<ul>
<% webnote.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<table>
<tr>
<th class="col_table">タイトル</th>
</tr>
<tr>
<td><%= form.text_field :title, size: "60" %></td>
</tr>
<tr>
<th>内容</th>
</tr>
<tr>
<td><%= form.text_area :content %></td>
</tr>
<tr>
<th>作成者</th>
</tr>
<tr>
<td><%= form.text_field :create_user %></td>
<tr>
<table>
<div class="actions">
<%= button_tag(type: 'submit') do %>
<span>登録</span>
<% end %>
</div>
<% end %>