I am playing with shapes in css and want to make a traditional bell shape (think Christmas bell). Here\'s the general shape that I\'m going for (though I really don\'t care abo
I tryed to help you, with your way (Yes, It's hard!) and that the best I got:
http://jsfiddle.net/NeBtU/1/
#bell {
left:100px;
position: relative;
}
#bell:before, #bell:after {
position: absolute;
content: "";
left: 50px; top: 0;
width: 320px;
height:400px;
background: #d3d3d3;
border-radius: 150px 150px 150px 20px;
-webkit-transform: rotate(15deg);
-webkit-transform-origin: 0 0;
}
#bell:after {
left: 0;
-webkit-transform: rotate(-15deg);
-webkit-transform-origin:100% 0;
border-radius: 150px 150px 20px 150px;
line-height:740px;
content:"\25CF";
color:#d3d3d3;
font-size:200pt;
}