Only Bolivian Here
Only Bolivian Here

Reputation: 36743

What type of HTML elements can I place inside li tags?

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

Answers (2)

Evert
Evert

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

Vinit
Vinit

Reputation: 1825

Inside a list item you can put text, line breaks, images, links, other lists, etc.

Upvotes: 1

Related Questions