搜尋

首頁  >  問答  >  主體

这种背景使用css3如何实现

这种背景使用css3如何实现

黄舟黄舟2863 天前568

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-17 11:54:24

    利用:after就可以實現,不知道是不是你想要的效果,希望對你有幫助

    .main {
                background: #7272ff;
                position: relative;
                width: 400px;
                height: 150px;
            }
            .main:after {
                content: '';
                background: #fff;
                width: 128%;
                height: 300px;
                position: absolute;
                top: 26px;
                left: -14%;
                border-radius: 50%;
            }
    <p class="main"></p>
    

    回覆
    0
  • 取消回覆