Enlarge clickable area for Anchor link - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Description

Enlarge clickable area for Anchor link

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">

</style> <!--from ww w. ja va2 s  . c o m-->
 </head> 
 <body> 
  <div> 
   <a href="#home" target="_blank">Home</a> 
  </div> 
  <div> 
   <a href="#" target="_blank">Contact us</a> 
  </div> 
  <div> 
   <a href="#" target="_blank">Feedback</a> 
  </div> 
  <div> 
   <a href="#" target="_blank">Products</a> 
  </div>  
 </body>
</html>

Related Tutorials