0

例如,我有一个 30px 的绝对 div,在 css 中设置第二个 div 的长度为剩余空间的总长度的最佳方法是什么?

4

1 回答 1

0
<div style="display: table; width: 300px; height: 300px; background: lightblue;">
    <div style="display: table-cell; width: 30px; background: lightcoral;">A</div>
    <div style="display: table-cell; background: wheat;">B</div>
</div>

(小提琴)

于 2013-08-17T20:11:48.310 回答