ASCII码 ASCII码

关于太极图的制作

发布于:2022-05-10 11:14:44  栏目:技术文档
  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>

相关推荐
阅读 +