经过研究,我确认calc应该适用于ie8 +,但它对我不起作用。
这是我制作的JS小提琴:
这是代码: HTML:
<div id="outer">
<div id="inner">
</div>
</div>
CSS:
#outer{
width:400px;
background-color:black;
height:200px;
}
#inner{
width:calc(80%-100px);
width:expression(80%-100px);
background-color:red;
height:100%;
}
以下是我看到的输出:
我做错了什么?