Page 1 of 1

Mouse Action

Posted: Mon Oct 20, 2003 9:33 am
by szms
How can I activate (code) so that when my mouse points any link it will show differently (probably large in size with differnet color).

Posted: Mon Oct 20, 2003 2:35 pm
by volka
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 &#123; cursor: help; &#125;
		</style>
	</head>
	<body>
		<a href="javascript:void(0)">test</a>
	</body>
</html>