如何设置光滑的边界半径超过50%

时间:2016-05-30 11:31:32

标签: html css css3

边缘半径有问题。

我需要设置边框半径,例如

enter image description here

Css边界半径,如

    border-top-right-radius: 46%;
    border-top-left-radius: 21%;

给我糟糕的结果。有没有办法让光滑的半径?

1 个答案:

答案 0 :(得分:6)

您可以使用每个角的2个值剪切边框,也可以使用像素单位



html {
  background:#023C5C;
}

div {
  text-align:center;
  background:#007EAA;
  min-height:200px;
  border-radius: 400px 70px 0 0 / 100px 10px 0 0;
  width:500px
}

<div></div>
&#13;
&#13;
&#13;