CSS Property Value How to - cursor: wait;








Question

We would like to know how to cursor: wait;.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {<!--   w  ww. j  av a 2s . c  om-->
  background-color: lime;
  height: 100px;
  width: 300px;
  cursor: wait;
}
</style>
</head>
<body>
  <div></div>
</body>
</html>

The code above is rendered as follows: