ant-input-group-addon与非输入元素,如ant-select / ant-btn

时间:2017-07-21 11:08:30

标签: antd

如何将ant-input-group-addon用于ant-selectant-btn等非输入元素?我正在寻找造型HTML / CSS解决方案,但不是React one。

1 个答案:

答案 0 :(得分:0)

  

ant-input-group-compact做了诀窍:

enter image description here

<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>