HTML CSS examples for CSS Property:cursor
Set cursor for a div with CSS
<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>