入力フィールドのプレースホルダーの配置をHTMLフォームの中央に配置するにはどうすればよいですか?
次のコードを使用していますが、機能しません。
CSS->
input.placeholder {
text-align: center;
}
.emailField {
top:413px;
right:290px;
width: 355px;
height: 30px;
position: absolute;
border: none;
font-size: 17;
text-align: center;
}
HTML->
<form action="" method="POST">
<input type="text" class="emailField" placeholder="support@socialpic.org" style="text-align: center" name="email" />
<!<input type="submit" value="submit" />
</form>
input.placeholder
少しを取り除くときに機能します。入力内のテキストを中央に揃えると、プレースホルダーも揃えられます。