how to make an oval in css?

前端 未结 7 729
甜味超标
甜味超标 2020-12-03 00:56

I want to make an oval like:

\"enter

But when i used this code:



        
7条回答
  •  日久生厌
    2020-12-03 01:52

    .oval {
      width: 10px;/*change here*/
      height: 157px;/* or here if you want to be more sharper*/
      border-radius: 50%;
      background: #1abc9c;
    }

    If you want more shapes, you can generate these using

    http://enjoycss.com/code/
    

提交回复
热议问题