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
1.4m articles
1.4m replys
5 comments
57.0k users