입력 필드의 자리 표시 자 정렬을 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
비트 는 비트를 제거 할 때 작동합니다 . 입력 내부의 텍스트를 가운데에 맞추면 자리 표시 자도 정렬됩니다.