Html Icon Pointer Hand

I due link con attibuto CSS “cursor” impostato per la visualizzazione del puntatore del mouse “Hand”

Passando con il puntatore del mouse, sui seguenti link, puoi rilevare se il tuo browser, supporta entrambi gli attributi.

Di seguito un esempio di una pagina html che impstosta il cursore con i due attributi.

<!DOCTYPE html>
<html>
<head>
<style>
.pointer {cursor: pointer;}
.hand {cursor: hand;}
</style>
</head>
<body>
<a href="#" target="_blank" class = "pointer" >
pointer (mano cursore)
</a>
<a href="#" target="_blank" class = "hand" >
hand (mano cursore)(deprecato)
</a>
</body>
</html>
This entry was posted in Web. Bookmark the permalink.