Change Cursor : cursor « CSS « HTML / CSS

HTML / CSS » CSS » cursor 
Change Cursor
 
<html>
<head>
<style type="text/css">
.xlink {cursor:crosshair}
.hlink{cursor:help}
</style>
</head>

<body>
<b>
<a href="http://www.java2s.com" class="xlink">CROSS LINK</a>
<br>
<a href="http://www.java2s.com" class="hlink">HELP LINK</a>
</b>
</body>
</html>



           
         
  
Related examples in the same category
1.The cursor Property
2.Mouse cursor List
3.'cursor' Example
4.cursor: url('ani.ani')
5.cursor: move
6.cursor: wait
7.cursor custom
8.cursor: pointer; crosshair; move; text; wait; help
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.