■HTML部分の修正
<td class="CommentFormTh">comment</td>
<td class="CommentFormTd"><textarea class="CommentForms" name="comment" cols="40" rows="4"></textarea></td>
↑デフォでは rows="4" (縦4行)なので、 rows="8" (縦8行)にしてみる。
■CSS部分の修正
/*送信ボタンのTDタグ設定*/
.CommentFormSubmit{
text-align: right;
}
/*input・textarea*/
.CommentForms{
width: 200px; ←横幅を広げるため、ここを350pxにしてみた。
color: #555555;
background-color: #ffffff;
border-style: solid;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-color: #cccccc;
[0回]