欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用CSS制作半圆和圆形

程序员文章站 2022-03-31 19:45:38
...

用CSS制作半圆和圆形

  <style type="text/css">
    /* 用CSS制作半圆和圆形 */
        .box {
            width: 600px;
            height: 300px;
            border-radius: 300px 300px 0 0;
            background-color: blue;
            float: left;
        }
        .box2 {
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background-color: red;
           position: relative;
           z-index: -1;
        }
    </style>

用CSS制作半圆和圆形