How to make rounded corner div

Today i will tell you how to make rounded div. There are two css properties used for this -moz-border-radius and -webkit-border-radius. They both apply to firefox and google chrome respectively. I am applying about 10px round to the div. If you want to apply round corner to only top then you can use as: -moz-border-radius:10px 10px 0px 0px; -webkit-border-radius:10px 10px 0px 0px; Here is [...]