How should I create a description list with bullets?

abenryempance

New Member
I have a \[code\]<dl>\[/code\] description list that is unordered and therefore should display bullets before each \[code\]<dt>\[/code\].Edit: To clarify, I have an unordered list of \[code\]<dt>\[/code\]-\[code\]<dd>\[/code\] pairs. They should display looking like one list item, with the \[code\]<dt>\[/code\] having a bullet before it. I can think of two ways to apply bullets to this list:[*]Putting a \[code\]<ul>\[/code\] around the \[code\]<dt>\[/code\] and then \[code\]<li>s\[/code\] around the items[*]Using the \[code\]<dt>'s\[/code\] CSS :before pseudo-selector and give it the content of a bulletWhich is the better way to create a description list with bullets?Thanks for any responses.
 
Back
Top