Rounded side, not rounded corners

Here is the jsfiddle: http://jsfiddle.net/swqZL/

CSS for element div with class “figure”:

.figure {
height: 400px;
width: 200px;
background-color: black;
border-bottom-left-radius: 100%30px;
border-bottom-right-radius: 100%30px;    
}

Horizontal radius 100%, vertical radius 30px

Leave a Comment