w3resource

User Interface - Cursor: crosshair

Cursor: crosshair

If the value of the cursor property is set to crosshair, a simple crosshair, that is how the cursor will look like.

Here is the css file (say cch.css):

c1 {cursor: crosshair;}

Here is the html file (say css-cursors-crosshair.htm)::

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>example of external CSS</title>
<link href="cch.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p><a href="test.htm" class="c1">Click here to go learn more about CSS.</a></p>
<p>&nbsp;</p>
</body>
</html>

Here is how it will look:

Previous: User Interface - Cursor: auto
Next: User Interface - Cursor: default



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/css/user-interface/crosshair.php