Can anybody tell me is it possible to make a shape (like attached image) only using CSS.
This is shape -

I tried to archive this using css border-radius then it was close. But bottom of the shape it's wide is need to increase little. (see the image)
This is my code so far -
HTML :
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="" >content</a></li>
<li><a href="#">content</a></li>
<li><a href="#">content</a></li>
<li><a href="#">content</a></li>
</ul>
CSS :
.content .nav-tabs {
background: #dd5b5b;
padding: 15px 0 5px 0;
overflow: hidden;
}
.content .nav-tabs > li {
float: left;
list-style: none;
}
.content .nav-tabs > li > a {
padding: 5px 40px 10px;
background: #eaedf2;
border: 1px solid #a48686;
border-bottom: none;
border-top-right-radius: 2em;
border-top-left-radius: 1.5em;
text-decoration: none;
color: gray;
}
It would be highly appreciated if someone can tell my how I figure this out.
