Is it possible to create a rectangle with rounded edges without using an image? For example:

Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is a good tutorial to understand rounded border for any div:
http://www.css3.info/preview/rounded-border/
Or you can round a border of a certain div like this:
in a nut shell:
You can combine these as you like.
-webkit-… will only be recognized by WebKit browsers (Chrome, Safari),-moz-… will only be recognized by Mozilla-based browsers (Firefox.)EDIT:
You can only apply border-radius to td, not tr or table. I’ve gotten around this for rounded corner tables by using these styles:
Hope this helps.