3_奥运五环.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. div{
  14. width: 200px;
  15. height: 200px;
  16. /* border: 10px solid black; */
  17. border-width: 10px;
  18. border-style: solid;
  19. border-radius: 50%;
  20. position: absolute;
  21. }
  22. #blue{
  23. border-color: blue;
  24. left: 0;
  25. top: 0;
  26. }
  27. div::after{
  28. content: "";
  29. position: absolute;
  30. width: 200px;
  31. height: 200px;
  32. border-width: 10px;
  33. border-style: solid;
  34. border-radius: 50%;
  35. left: -10px;
  36. top: -10px;
  37. }
  38. #blue::after{
  39. border-color: blue;
  40. z-index: 1;
  41. border-bottom-color: transparent;
  42. }
  43. #black{
  44. border-color: black;
  45. left: 220px;
  46. }
  47. #black::after{
  48. border-color: black;
  49. z-index: 1;
  50. border-left-color: transparent;
  51. }
  52. #red{
  53. border-color: red;
  54. left: 440px;
  55. }
  56. #red::after{
  57. border-color: red;
  58. z-index: 1;
  59. border-left-color: transparent;
  60. }
  61. #orange{
  62. border-color: orange;
  63. left: 110px;
  64. top: 110px;
  65. }
  66. #orange::after{
  67. border-color: orange;
  68. }
  69. #green{
  70. border-color: green;
  71. left: 330px;
  72. top: 110px;
  73. }
  74. #green::after{
  75. border-color: green;
  76. z-index: 1;
  77. border-top-color: transparent;
  78. border-right-color: transparent;
  79. }
  80. </style>
  81. </head>
  82. <body>
  83. <div id="blue"></div>
  84. <div id="black"></div>
  85. <div id="red"></div>
  86. <div id="orange"></div>
  87. <div id="green"></div>
  88. </body>
  89. </html>