<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <style> .circle { width: 100px; height: 100px; border: 20px solid #000; border-radius: 50%; border-left-color: transparent; border-top-color: transparent; transform: rotate(-45deg); } </style> </head> <body> <div class="circle"></div> </body> </html> 这个半圆用SVG写的话也是挺简单的。
这个半圆用SVG写的话也是挺简单的。