1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- div {
- width: 200px;
- height: 200px;
- border-radius: 50%;
- border-width: 10px;
- border-style: solid;
- position: absolute;
- }
- div::after {
- content:"";
- width: 200px;
- height: 200px;
- border-radius: 50%;
- position: absolute;
- top: -10px;
- left: -10px;
- }
- #red {
- border-color: red;
- top: 0;
- left: 0;
- }
- #red::after {
- z-index: 99;
- border: 10px solid #f00;
- /* transparent 透明 */
- border-bottom-color: transparent;
- }
- #yellow {
- border-color: yellow;
- top: 0;
- left: 235px;
- }
- #blue {
- border-color: blue;
- top: 0;
- left: 470px;
- }
- #green {
- border-color: green;
- top: 115px;
- left: 110px;
- }
- #black {
- border-color: black;
- top: 115px;
- left: 360px;
- }
- </style>
- </head>
- <body>
- <div id="red"></div>
- <div id="yellow"></div>
- <div id="blue"></div>
- <div id="green"></div>
- <div id="black"></div>
- </body>
- </html>
|