Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のHTMLフォームには、次のものがあります
Title: <textarea cols="50" id="title" name="title" rows="4"></textarea>
その結果、「Title:」という単語がテキストエリアの下部と同じ高さになります。真ん中に寝かせてもいいですか?
垂直方向の配置を中央に設定します。
textarea {vertical-align:middle}
デモ
<label>Title: <textarea cols="50" id="title" name="title" rows="4"></textarea></label>
次に、label要素のスタイルを設定します。