我有一个容器 div 和 3 个内部 div,它们都放在一行中。侧面 div 具有固定宽度,我想要中间 div 的自动宽度。这是我的代码:
<div style="width: auto; height: 25px; position: relative; float: right;">
<div style="width: 25px; height:25p; float: right; position: relative; display:inline-block;">
<div style="width: auto; height: 25px; position: relative; float: right; display:inline-block;"></div>
<div style="width: 25px; height:25p; float: right; position: relative; display:inline-block;">
</div>
...但中间 div 不占用任何空间。
注意:我不希望容器 div 具有固定或百分比大小。
解决办法是什么?