View Full Version : CCS Cursor


tearstained7987
07-29-2003, 04:59 PM
How to we get our mouse to turn into a crosshair instead of the mouse?

Alcy
07-29-2003, 05:03 PM
For the whole page,
<style type="text/css">
body
{
cursor: crosshair;
}
</style>

For a link,
<style type="text/css">
a:hover
{
cursor: crosshair;
}
</style>