How i can do divs with round corners?
xxmp 0 Light Poster
Recommended Answers
Jump to PostThere are a couple of techniques. The one I would suggest looking at is what is generally known as sliding door. A demo/tutorial for it is here: css sliding door.Most use this technique …
Jump to PostMissing from the above answers is the css3 styles for up to date browsers, so the full code would look like this
.yourdiv [
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px; /* the css3 code */
}Always use all three bits of code when you want rounded corners.
…
All 5 Replies
scrappedcola 11 Posting Whiz in Training
Tsakaki 0 Newbie Poster
teedoff 3 Posting Pro
drjohn 56 Posting Pro in Training
xxmp 0 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.