Anchor href hover showing additional clickable links - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover Link

Description

Anchor href hover showing additional clickable links

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--  w w  w  .  j a v a2 s  . c o m-->
 <body> 
  <style>

</style> 
  <div id="NewsGroup1"> 
   <ul> 
    <li>Lore</li> 
    <ul> 
     <li> <a target="_blank" href="link2.htm">Lorem i</a> 
      <div id="myoptions"> 
       <a href="save"> <img src="https://www.java2s.com/style/demo/Opera.png"> </a> 
       <a href="delete"> <img src="https://www.java2s.com/style/demo/Opera.png"> </a> 
      </div> </li> 
    </ul> 
   </ul> 
  </div>  
 </body>
</html>

Related Tutorials