我無法在輸入內移動文本。如果我添加邊距或填充,它會移動或縮放輸入。我想將「用戶名」從左側移動10px。在輸入中移動文本
.log_inp input[type="username"] {
top: 80px;
height: 28px;
width: 234px;
border: solid 1px #e4e4e4;
font-family: OpenSans-Italic;
color: #9a9a9a;
font-size: 13px;
}
input {
padding: 0px;
}
<div class="log_inp">
<form action="#">
<input type="username" name="Username" placeholder="Vārds...">
<br>
<input type="password" name="Password" placeholder="Parole...">
<br>
<input type="submit" value="Ienākt">
</form>
</div>
你的意思是你想通過向右推佔位符文本及其光標位置待着您輸入的佔位符文本? – j08691
[HTML5佔位符css填充]的可能重複(http://stackoverflow.com/questions/4919680/html5-placeholder-css-padding) – GreeKatrina