.foo { width: 100px + 50px; } // Or using SASS variables $width-one: 100px; ... Value specified in CSS .foo { width: calc(100% - 50px); } ...
確定! 回上一頁