Fix drop-down menu CSS style without star hack -


i have drop-down menu work there problem css style. if have there on top css file:

* {     margin: 0;     padding: 0; } 

everything allright. if removed block, result http://jsfiddle.net/berrf/8/. how can fix before star's block? answer jsfiddle best. advance.

* universal selector. applies css styling elements.

in case, need margin: 0 , padding: 0 ul , h3 elements present in #accordian element.

so, use #accordian ul instead of using *.

#accordian ul, #accordian h3{     padding: 0;     margin: 0; } 

js fiddle


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -