如何对齐一直显示到最左侧的选择内容?

时间:2019-06-13 16:55:17

标签: html css

Codepen Demo

select {
  padding-left: 0;
  text-indent: 0;
}

option {
  margin-left: -2px;
  /* no effect */
}
<input type="text" value="align with this"> <br>
<select name="" id="">
  <option value="">All the way left</option>
</select>

以下是预期结果

enter image description here

0 个答案:

没有答案