Css绘制圆形,环形,椭圆等图形

时间:2023-03-09 17:46:54
Css绘制圆形,环形,椭圆等图形

转载自http://blog.csdn.net/gongstrong123/article/details/50888758

绘制圆形,环形,椭圆

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
//圆形
.circle1{ width: 200px; height: 200px; background-color: blue; border-radius: 50%; }
//环形
.circle2{ width: 200px; height: 200px; background-color: blue; border-radius: 50%; border: 50px solid red; }
//椭圆
.circle3{ width: 200px; height: 300px; background-color: red; border-radius: 50%; } </style> </head> <body> <div class="circle1"></div> <div class="circle2"></div> <div class="circle3"></div> </body> </html>

还有长方形等各种其他形状

http://www.cnblogs.com/top5/archive/2012/02/14/2351959.html