如何用css创建一个椭圆形矩形?

时间:2017-04-25 09:05:19

标签: css

我想用css创建一个椭圆形矩形。我知道我可以用border-radius做到这一点,但我想做那样的事情:

enter image description here

有没有办法用纯css做到这一点?

1 个答案:

答案 0 :(得分:1)

是的,如果有人需要的话。



.oval-rectangle {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 150px;
  height: 150px;
  position: relative;
  margin: 20px 0;
  border: none;
  -webkit-border-radius: 50% / 10%;
  border-radius: 50% / 10%;
  text-align: center;
  text-indent: 0.1em;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #1abc9c;
}

.oval-rectangle::before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  content: "";
  top: 10%;
  right: -5%;
  bottom: 10%;
  left: -5%;
  border: none;
  -webkit-border-radius: 5% / 50%;
  border-radius: 5% / 50%;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #1abc9c;
  text-shadow: none;
}

<div class="oval-rectangle"></div>
&#13;
&#13;
&#13;