1 回答

TA貢獻(xiàn)1779條經(jīng)驗(yàn) 獲得超6個(gè)贊
這是一個(gè)填充問(wèn)題。使用 'padding-right' 減少空白。
.custom-select{
background-image: none !important;
padding-right:5px !important;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
<div class="form-group">
<div class="col-8">
<div class="input-group">
<select class="custom-select">
<option>end of text string will hide behind opaque double arrow around here</option>
<option>2</option>
</select>
</div>
</div>
</div>
注意:5px 只是一個(gè)示例,您可能希望確保左右填充匹配。
添加回答
舉報(bào)