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 [...]

By |2013-06-18T07:59:16+00:00February 8, 2011|Programming|0 Comments

Css style tutorial

In this tutorial i will tell you how to apply css styles to html tags. I am applying style to the div tag. First you use style in div tag and then i apply different css properties in the style like width, height, margin, padding, border, background color. Each css property is separated by semicolon. Then i write lpsum text within the div tag. So the [...]

By |2017-09-12T19:15:36+00:00February 8, 2011|Programming|0 Comments
Go to Top