Mouse Action
Moderator: General Moderators
Mouse Action
How can I activate (code) so that when my mouse points any link it will show differently (probably large in size with differnet color).
take a look at http://www.w3.org/TR/REC-CSS2/ui.html#cursor-props
Code: Select all
<html>
<head>
<title></title>
<style type="text/css">
a { cursor: help; }
</style>
</head>
<body>
<a href="javascript:void(0)">test</a>
</body>
</html>