dt

How to style dt and dd so they are on the same line?

Using CSS, how can I style the following: <dl> <dt>Mercury</dt> <dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd> <dt>Venus</dt> <dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd> <dt>E...

Styling the DD tag

I am using dl,dt and dd tags in one of my project . Now I want give a bullet before dd . How can I make my dd's to a bulleted list using css ? Any Ideas ??? ...

How to hide the "dt" when following "dd"s are hidden

hello everyone, I have a triggered javascript function to hide "dd"s which have the same class name. But the problem is, sometimes, only the dt is left alone. For example, the first dt dd block, when I hidden the all 3 dd's. the dt (today) one is still there. I want to hide the dt too when no dd is associated. How can i do that? thank...