【发布时间】:2020-09-27 05:10:28
【问题描述】:
.input-select{
position: relative;
height: 100%;
}
.input-select::before{
content: '';
position: absolute;
display: inline-block;
height: 50px;
width: 50px;
background-color: red;
z-index: 100;
}
<div className="input-group">
<label htmlFor="type">GST Type: </label>
<select name="type" id="type" className="input-select">
<option>Registered</option>
<option>Unregistered</option>
</select>
</div>
我尝试将 body 和 html 高度设置为 100% 以及将 .input-select 高度设置为 100%。
我已经尝试将显示设置为块或内联块并将 z-index 设置为高值。
但是到目前为止我还没有让它工作。
【问题讨论】:
-
选择输入不允许伪元素。 stackoverflow.com/questions/21103542/…