up vote 4 down vote favorite
3
share [g+] share [fb]

Duplicate:
What is the best way to create rounded corners
How to make a cross browser, W3C valid, semantic, non-javascript ROUND corner?

What techniques (That are standards compliant) are there for putting rounded corners on display elements in an HTML page?

I put HTML CSS and javascript on the tag list below because I believe they are fairly ubiquitous, but if you have a technique that uses other techniques that may be used and are (relatively) reliable across standard browsers that works as well, but please put a note on what browsers fail.

link|improve this question

1  
1  
feedback

closed as exact duplicate by Chad Birch, Paolo Bergantino, JoshBerke, Keith, Pesto May 1 '09 at 17:56

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

3 Answers

up vote 0 down vote accepted

The old-school way it to use a 3x3 HTML table with images: fixed sized images for the corners, stretchable images along the edges, and your content in the middle. See this page for a better description.

Edit: And here's a page describing how to do with with CSS without images.

link|improve this answer
Got the tick for the link. I like the way they used border to make a round corner. – Loki Astari Jun 10 '09 at 1:59
feedback

CSS3 has a border-radius tag and box-shadow tag, but they are only implemented in Mozilla and Safari I think. You can round corners and create shadow very easily using that.

http://www.css3.info/preview/rounded-border/

Other then that, what I do is create images and load those using CSS and DIV tags. This link is what I used to get started.

http://www.cssjuice.com/25-rounded-corners-techniques-with-css/

Good luck!

link|improve this answer
feedback

At a company I have previously worked at, there were extensive quantities of graphics resources that were just rounded edges to enable this. Clunky to manage, but it worked well and looked really nice.

link|improve this answer
Okay, why the downvotes? – Paul Sonier May 1 '09 at 21:32
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.