码迷,mamicode.com
首页 > Web开发 > 详细

如何用css3实现一个扇形?

时间:2020-05-02 23:02:46      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:ola   cto   如何   实现   initial   ace   ati   order   color   

思路跟画实体三角形一个道理,只不过多了一个圆角属性

代码如下:

<!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">
    <title>c3扇形</title>
    <style>
        .sector{
            width0;
            height0;
            border-width50px;
            border-style: solid;
            border-color#f00 transparent transparent;
            border-radius50px
        }
    </style>
</head>
<body>
    <div class="sector"></div>
</body>
</html>

 

如何用css3实现一个扇形?

标签:ola   cto   如何   实现   initial   ace   ati   order   color   

原文地址:https://www.cnblogs.com/akby/p/12819809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!