0
我已經創建了一個下拉選擇器,用於選擇產品的合適數量。下拉選擇器中的內容對齊
<div class="newSelectQty" style="display: inline-block; vertical-align: middle; line-height: 1;">
<select id="quantitySelector" class="quantityWrapper">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
我已經用下面的方式對它們進行了樣式設計,並且我已經用精靈圖像改變了選擇器中的箭頭。
.newSelectQty select{
background: transparent url(../img/sprite.png) no-repeat right center;
background-position: 0 -35px; width: 30px;
width: 75px;
text-align: center;
color:#777777;
font-size: 13px;
text-align: center;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height:25px; }
我怎樣才能讓箭頭對準右側而值(1,2,3,4,5)可以在一些空間右邊是否與左邊界不太靠近?我怎樣才能將中間的選擇框與單詞「數量」對齊?非常感謝!
使用選擇2 https://select2.github.io/examples.html – Rahul