博客列表 >关于太极图的制作

关于太极图的制作

当时只道是寻常
当时只道是寻常原创
2022年05月09日 22:43:34373浏览
  1. 太极图
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. <style>
  10. .yinyang {
  11. width: 120px; height: 240px;
  12. background-color: white;
  13. border-color: black;
  14. border-style: solid;
  15. border-width: 1px 121px 1px 1px;
  16. border-radius: 50%;
  17. position: relative;
  18. }
  19. .yinyang:before {
  20. content: "";
  21. position: absolute;
  22. top: 50%;
  23. left: 50%;
  24. background-color: white;
  25. border: 40px solid black;
  26. border-radius: 50%;
  27. width: 40px;
  28. height: 40px;
  29. }
  30. .yinyang:after {
  31. content: "";
  32. position: absolute;
  33. top: 0;
  34. left: 50%;
  35. background-color: black;
  36. border: 40px solid white;
  37. border-radius:50%;
  38. width: 40px;
  39. height: 40px;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="yinyang"></div>
  45. </body>
  46. </html>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议