calc(100% - 20px);
-webkit-calc(100% - 20px);//chrome
-moz-calc(100% - 20px);//firefox
height:calc(80% + 20px);
height:-webkit-calc(80% + 20px);//chrome
height:-moz-calc(80% + 20px);//firefox
特别注意:+或者-两边都要用空格隔开!!!
calc(100% - 20px);
-webkit-calc(100% - 20px);//chrome
-moz-calc(100% - 20px);//firefox
height:calc(80% + 20px);
height:-webkit-calc(80% + 20px);//chrome
height:-moz-calc(80% + 20px);//firefox
特别注意:+或者-两边都要用空格隔开!!!