03-计算.less 193 B

12345678910111213
  1. .box {
  2. width: 100 + 10px;
  3. width: 100 - 20px;
  4. width: 100 * 2px;
  5. // 除法
  6. // 68 > rem
  7. width: (68 / 37.5rem);
  8. // height: 29 ./ 37.5rem;
  9. height: 29 / 37.5rem;
  10. }