Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS border radius question Re: border radius question

#114055
JohnMotylJr
Participant

You can use percentages:

div {
height:300px;
width:300px;
margin:25px;
border:2px solid black;
border-radius:45% 30px;
}

http://jsfiddle.net/john_motyl/G6cCD/