I want to use relative size instead of fixed size. I want to use em.
My CSS is:
body{ font:10px; } #wrap { font:1.2em; } #wrap ul li { paddi
the font size of #wrap ul li is 10px*1.2em*2em, thus padding-left:24px;
#wrap ul li
it always takes the font size of the parent element (in your case #wrap)
#wrap