コメント-投稿フォームのデザインを指定

コメントの投稿フォームをデザインする

投稿フォームのソースを確認する
  • h3要素
  • p要素
  • form要素
<div id="comments">

<div id="respond">
<h3 id="reply-title">コメントを残す <small><a rel="nofollow" id="cancel-comment-reply-link" href="/wordpress/2011/12/30/#respond" style="display:none;">コメントをキャンセル</a></small></h3>

<form action="http://localhost/wordpress/wp-comments-post.php" method="post" id="commentform">
<p class="comment-notes">メールアドレスが公開されることはありません。 <span class="required">*</span> が付いている欄は必須項目です</p>							<p class="comment-form-author"><label for="author">名前</label> <span class="required">*</span><input id="author" name="author" type="text" value="" size="30" aria-required='true' /></p>
<p class="comment-form-email"><label for="email">メールアドレス</label> <span class="required">*</span><input id="email" name="email" type="text" value="" size="30" aria-required='true' /></p>
<p class="comment-form-url"><label for="url">ウェブサイト</label><input id="url" name="url" type="text" value="" size="30" /></p>
<p class="comment-form-comment"><label for="comment">コメント</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>
<p class="form-allowed-tags">次の<abbr title="HyperText Markup Language">HTML</abbr> タグと属性が使えます:  <code>&lt;a href=&quot;&quot; title=&quot;&quot;&gt; &lt;abbr title=&quot;&quot;&gt; &lt;acronym title=&quot;&quot;&gt; &lt;b&gt; &lt;blockquote cite=&quot;&quot;&gt; &lt;cite&gt; &lt;code&gt; &lt;del datetime=&quot;&quot;&gt; &lt;em&gt; &lt;i&gt; &lt;q cite=&quot;&quot;&gt; &lt;strike&gt; &lt;strong&gt; </code></p>
<p class="form-submit">
<input name="submit" type="submit" id="submit" value="コメントを送信" />
<input type='hidden' name='comment_post_ID' value='9' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p>
</form>

</div>

</div>

CSS

/* コメント */
#comments {
  clear: both;
  margin: 20px 0;
  padding: 18px;
  border: solid 1px #ccc;
}
#comments h3 {
  font-size: 0.875em;
  padding: 0 0 3px 0;
  border-bottom: solid 1px #ccc;
}
#comments p {
  font-size: 0.75em;
  margin: 10px 0 0 0;
}
#comments p a {
  color: #0c8bcd;
}
#comments input, #comments textarea {
  display: block;
}
#comments textarea {
  width: 450px;
}
#comments .required {
  color: #f00;
}
#comments code {
  font-size: smaller;
  margin: 5px 0 0 0;
  display: block;
}


ログインしたときの表示を確認する