How to change cursor style using CSS Use CSS to change the way cursor looks when pointed at specific HTML element, i.e.
The default cursor behaviour:
cursor: auto
The arror cursor:
cursor: default
How to change HTML form margins using CSS Sometimes you don't want to keep the default form margins. Use CSS to change form margines i.e. set to zero:
form {
margin-bottom: 0;
margin-top: 0;
margin-right: 0;
margin-left: 0;
}