<style type="text/css">
.box{
/*实现了宽度为父容器宽度减去固定的100像素*/
width:-webkit-calc(100% - 100px);
width:-moz-calc(100% - 100px);
width:calc(100% - 100px);
}
</style>
2024-04-03 19:31:52
<style type="text/css">
.box{
/*实现了宽度为父容器宽度减去固定的100像素*/
width:-webkit-calc(100% - 100px);
width:-moz-calc(100% - 100px);
width:calc(100% - 100px);
}
</style>