Set cursor for a div with CSS - HTML CSS CSS Property

HTML CSS examples for CSS Property:cursor

Description

Set cursor for a div with CSS

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">
.wrapper {<!--from   w  ww.j  a  va  2 s.c o  m-->
   position:relative;
   cursor:text;
}

.wrapper a {
   pointer-events:none;
}
</style> 
 </head> 
 <body> 
  <span class="wrapper"> <a href="#">Some Link</a> </span>  
 </body>
</html>

Related Tutorials