HTML Element Style How to - Make Custom-Cursor for whole page








Question

We would like to know how to make Custom-Cursor for whole page.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
* {<!--   w  w  w . j  av  a  2s  . c  om-->
  cursor: move
}

body:active {
  cursor: move;
}
</style>
<script type='text/javascript'>
window.onload=function(){
   document.onselectstart = function () { return false; };
}
</script>
</head>
<body>
</body>
</html>

The code above is rendered as follows: