[CSS] [proprietà] cursor

cursor (proprietà CSS) imposta il tipo di puntatore del mouse da visualizzare sull’elemento HTML.

Sintassi

[selettore] {
  cursor: all-scroll|cell|col-resize|copy|crosshair|
          e-resize|help|move|n-resize|ne-resize|
          no-drop|none|pointer|progress|row-resize|
          text|url([url immagine max 32×32 pixel])|
          vertical-text|wait|zoom-in|zoom-out
}
valore descrizione
XXX XXX

Esempi

<style>
.cursor_1:hover {
  cursor:cell;
}
.cursor_2:hover {
  cursor:help;
}
.cursor_3:hover {
  cursor:progress;
}
.cursor_4:hover {
  cursor:zoom-in;
}
</style>
<p class="cursor_1">Sofferma il mouse su questo testo.</p>
<p class="cursor_2">Sofferma il mouse su questo testo.</p>
<p class="cursor_3">Sofferma il mouse su questo testo.</p>
<p class="cursor_4">Sofferma il mouse su questo testo.</p>

Sofferma il mouse su questo testo.

Sofferma il mouse su questo testo.

Sofferma il mouse su questo testo.

Sofferma il mouse su questo testo.

css-cursor-custom

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

css, proprietà css

Related Articles

0 Comment

Rispondi