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.
我在正文中有两个元素,一个 div 和 iframe。div 标头具有固定高度(100 像素),所以我希望 iframe 适合所有其他高度。body 不能显示滚动条,但 iframe 必须有滚动条。
这里举个例子。
谢谢你。
您可以calc()为此使用:
calc()
.content{ height: -moz-calc(100% - 100px); height: -webkit-calc(100% - 100px); height: calc(100% - 100px); }