JiuyeXD's Blog
九叶
九叶博主

越努力 越幸运

登录
夜间

HTML CSS宽高度百分比数减去固定像素值的写法

1. 代码

<div id="output" style="width: 100%;height: 100%; display: none;">
    <div id="crumbs" style="width: 100%;height: 20px;"></div>
    <div id="terminal" style="width: 100%;height: calc(100% - 20px);"></div>
</div>

2. 效果图

高度 大

高度 小

[scode type=“yellow”]注意:减号两边一定要打空格,不然会失效[/scode]

THE END