我想创建一个包含按钮的输入,按钮上有一个向下的箭头,这样用户就可以单击它来打开或关闭列表。我无法将按钮放在输入中,我错过了什么?
.input-wrapper {
position: relative;
}
.combobox-input {
font-size: 16px;
font-weight: normal;
color: #4d4d4d;
background: #ffffff;
border: 1px solid #828995;
height: 30px;
padding: 4px 10px;
}
.combobox-arrow {
display: inline-block;
padding: 6px;
border: none;
background-color: white;
background-image: url(...);
width: 25px;
height: 25px;
}
<div className="input-wrapper">
<input className="combobox-input"/>
<button className="combobox-arrow" ></button>
</div>
1条答案
按热度按时间jgwigjjp1#
试试这个,看看它是否适合你的需要:(您可以根据需要修改代码段)