1. 程式人生 > >【CSS】width和height計算

【CSS】width和height計算

pre webkit logs mage height web wid div css

width:calc(100% - 20px);
width:-webkit-calc(100% - 20px);//chrome
width:-moz-calc(100% - 20px);//firefox
height:calc(80% + 20px);
height:-webkit-calc(80% + 20px);//chrome
height:-moz-calc(80% + 20px);//firefox

特別註意:+或者-兩邊都要用空格隔開!!!

技術分享圖片

【CSS】width和height計算