05-XX-calc-width.html 442 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Using calc() to calculate width</title>
  6. <style>
  7. /**
  8. * 1. Don't forget – spaces are needed around plus and minus signs.
  9. */
  10. .thing {
  11. height: 1em;
  12. outline: 1px solid red;
  13. width: -webkit-calc(50% + 20px*4 - 1em); /* [1] */
  14. width: calc(50% + 20px*4 - 1em); /* [1] */
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="thing"></div>
  20. </body>
  21. </html>