I want to know easiest way to create drop down list with html and css only.
+1
A:
css
<style type="text/css">
select.mySelect{}
select.mySelect option{}
</style>
html
<select class="mySelect">
<option>Display</option>
</select>
Kieran
2010-06-15 05:35:51
+2
A:
Try these websites they may give you a clear idea:
http://sperling.com/examples/menuh/
http://www.cssplay.co.uk/menus/drop_examples.html
http://www.dynamicdrive.com/dynamicindex1/droptabmenu.htm
Hope they might help you!
Ryano
2010-06-15 15:28:45
Thank you! these site are answers I need!
Shunter1112
2010-06-16 12:04:50