w3resource

User Interface - Cursor: default

Cursor: default

If the value of the cursor property is set to default, generally the cursor will look like an arrow, which is the default cursor display.

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

.c1 {cursor: default;}

Here is the html file (say default.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="default.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: crosshair
Next: User Interface - Cursor: pointer



Follow us on Facebook and Twitter for latest update.