I am using dl, dt and dd tags in one of my projects. I want to show a bullet before dd. How can I make my dds into a bullet list using CSS?
dl
dt
dd
Easiest way is to change the properties on your <dd>
<dd>
dd { display: list-item; list-style-type: disc; }
Works in every browser.
See this article: http://www.quirksmode.org/css/display.html
2.1m questions
2.1m answers
60 comments
57.0k users