Hello, I am trying to see how I can make this css menu http://www.dynamicdrive.com/style/cs...s_indent_menu/ have the corners rounded. How do you do this?
Thank you in advance![]()
Hello, I am trying to see how I can make this css menu http://www.dynamicdrive.com/style/cs...s_indent_menu/ have the corners rounded. How do you do this?
Thank you in advance![]()
The simplest solution is to use the CSS3 property border-radius. Unfortunately this is not yet supported in all browsers, but it works in Firefox, Chrome and Safari:
Good luck!Code:.indentmenu ul { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
Bookmarks