1. 程式人生 > 其它 >HTML/CSS 遊戲圖示

HTML/CSS 遊戲圖示

技術標籤:程式碼htmlcsscss3html5

HTML/CSS 遊戲圖示


程式碼:
<!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 { position: relative; width: 0; height: 0; border: 50px solid red; border-radius: 50%; border-right-color: transparent; } div::before { content: ""; /* display: block; */
position: absolute; left: -10px; top: -30px; width: 15px; height: 15px; border-radius: 50%; background-color: white; }
</style> </head> <body> <div></div> </body> </html
>

顯示:
在這裡插入圖片描述