如何将ant-input-group-addon
用于ant-select
和ant-btn
等非输入元素?我正在寻找造型HTML / CSS解决方案,但不是React one。
答案 0 :(得分:0)
ant-input-group-compact
做了诀窍:
<span class="ant-input-group ant-input-group-compact">
<span class="ant-input-group-addon" style="width:150px;">
<i class="anticon anticon-folder"></i> ant-input-group-addon
</span>
<input type="button" class="ant-btn ant-btn-sm" value="Button 1" style="width: 20%;">
<input type="button" class="ant-btn ant-btn-sm active" value="Button 2" style="width: 30%;">
<Select class="ant-select ant-select-selection ant-input-group">
<Option value="Select">Select</Option>
</Select>
</span>