How to create round corner drop down using CSS?
How to create round corner drop down using CSS?
Can you explain further? I understand rounded CSS, but whats being dropped down?
Probably a menu... You'll have to append a transparent png or gif to the bottom of your dropdown, like so:
Code:<div id="dropDownMenu"> <div style="background: transparent url('bg.gif') repeat-y"> <ul> <li><a>Link</a></li> <li><a>Link</a></li> <li><a>Link</a></li> </ul> </div> <img src="bottom.gif" /> </div>
PS - another option is to use the Curvy Corners API
http://www.curvycorners.net/