Anthony.G
Anthony.G

Reputation: 3

Css drawing - Custom nose shape

I'm starting with pure css drawing and animations and I'm stuck at creating the shape of the koala nose.

Koala

I know clip-path can be used to accomplish this, but, how can i make firefox-compatible?.

Upvotes: 0

Views: 911

Answers (1)

Ted
Ted

Reputation: 14927

There's probably a lot of possibilities, but try the border radius

.nose{
  border-radius:50px 50px 50px 50px / 100px 100px 50px 50px;
  width:70px;
  height:100px;
  background: red;
}
<div class="nose"></div>

Upvotes: 0

Related Questions