Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有一个 30px 的绝对 div,在 css 中设置第二个 div 的长度为剩余空间的总长度的最佳方法是什么?
<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>
(小提琴)