Reputation: 36743
What type of elements can I place inside of my li tags? I'm trying to make a list of friends for my website and I want to put in picture and more in each "list item".
What type of tags can I use?
Upvotes: 3
Views: 3887
Reputation: 8541
Almost any inline or block level element., In this case this would work well:
<ul>
<li>
<img src="source.jpg" alt="alt" />
<p><a href="#">link</a></p>
</li>
<li>
<img src="source.jpg" alt="alt" />
<p><a href="#">link</a></p>
</li>
</ul>
Upvotes: 4
Reputation: 1825
Inside a list item you can put text, line breaks, images, links, other lists, etc.
Upvotes: 1