How to make a pie chart in CSS

前端 未结 6 1473
天命终不由人
天命终不由人 2021-01-30 22:58

How can I create a pie chart with CSS like the one below?

\"enter

6条回答
  •  别那么骄傲
    2021-01-30 23:51

    I saw some people opting for Google Developers Tool, its very tough and it also uses JS and you only want CSS. So here is the most easy way, Pure CSS, made by using background gradient.

    .pie {
      width: 400px;
      height: 400px;
      background-image: conic-gradient(orange 64%, blue 17%, black);
      border-radius: 50%
    }

提交回复
热议问题