博客列表 >用户自定义元素大小的计算方式(box-sizing)

用户自定义元素大小的计算方式(box-sizing)

霏梦
霏梦原创
2020年06月19日 10:52:34619浏览

- 作者:霏梦

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>用户自定义元素大小的计算方式</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. .box {
  14. width: 200px;
  15. height: 180px;
  16. border: 6px solid black;
  17. padding: 10px;
  18. background-color: violet;
  19. background-clip: content-box;
  20. /* 重新计算大小,默认是以content-box为准 */
  21. box-sizing: border-box;
  22. }
  23. .box2 {
  24. width: 80px;
  25. height: 120px;
  26. background-color: red;
  27. padding: 20px;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class="box">
  33. <div class="box2"></div>
  34. </div>
  35. </body>
  36. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议