HTML Element Style How to - Use of IMG within a UL LI navigation menu list








Question

We would like to know how to use of IMG within a UL LI navigation menu list.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul li {<!--from   w  w  w . j  a  v a  2  s .c  om-->
  white-space: nowrap;
}

ul li img {
  margin-left: 10px;
  vertical-align: middle;
}
</style>
</head>
<body>
  <ul>
    <li>This is the LI text. 
       <img  src="http://www.java2s.com/style/download.png" width="24" height="24">
    </li>
    <li>This is the LI text. 
       <img  src="http://www.java2s.com/style/download.png" width="24" height="24">
    </li>
    <li>This is the LI text. 
       <img  src="http://www.java2s.com/style/download.png" width="24" height="24">
    </li>
    <li>This is the LI text. 
       <img  src="http://www.java2s.com/style/download.png" width="24" height="24">
    </li>
    <li>This is the LI text. 
       <img  src="http://www.java2s.com/style/download.png" width="24" height="24">
    </li>
  </ul>
</body>
</html>

The code above is rendered as follows: