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 dd
dl
dt
dd
Use a background-image.
Or try:
dd { display: list-item; list-style-type: disc; }
No idea if it will work though.