0
Lists
hello !! I need some help making a nested list, I am working on a project and I need to make a nested list with a defined list (DL) and a unordered list (UL) But it isn’t working quite right, it turns out looking weird.
4 ответов
+ 2
Can you please share an example on what you want to achieve?
+ 1
Try this. Post the code/example for better solution.
<dl>
<dd>Item 1</dd>
<dd>
<ul>
<li>item 2</li>
<li>Item 2</li>
</ul>
</dd>
</dl>
+ 1
I think this is better
<dl>
<dd>Item 1</dd>
<dd>
<ul>
<li>item 2</li>
<li>Item 2</li>
</ul>
</dd>
</dl>
0
whats the diff code by Adnan ?