我在选择text-indent
时使用了它,它在所有浏览器中都有效,但在Edge中不起作用。 Click here to see a JSFiddle demo
input {
text-indent: 50px;
display: block;
width: 600px;
}
select {
text-indent: 50px;
display: block;
width: 600px;
}
<input value="value text-indent (50px)">
<input placeholder="placeholder text-indent (50px)">
<select>
<option>sdasdasdasd</option>
</select>