Proprietà del carattere della tela HTML

❮ Riferimento tela HTML

Esempio

Scrivi un testo alto 30px sulla tela, usando il carattere "Arial":

Il tuo browser non supporta il canvastag HTML5.

JavaScript:

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.font = "30px Arial";
ctx.fillText("Hello World", 10, 50);

Supporto del browser

I numeri nella tabella specificano la prima versione del browser che supporta completamente la proprietà.

Property
font Yes 9.0 Yes Yes Yes

Definizione e utilizzo

La proprietà del carattere imposta o restituisce le proprietà del carattere correnti per il contenuto del testo sull'area di lavoro.

La proprietà font utilizza la stessa sintassi della proprietà font CSS .

Valore di default: 10px sans-serif
sintassi JavaScript: context .font="italic maiuscolo grassetto 12px arial";

Valori di proprietà

Values Description Play it
font-style Specifies the font style. Possible values:
  • normal
  • italic
  • oblique
font-variant Specifies the font variant. Possible values:
  • normal
  • small-caps
font-weight Specifies the font weight. Possible values:
  • normal
  • bold
  • bolder
  • lighter
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900
font-size/line-height Specifies the font size and the line-height, in pixels
font-family Specifies the font family
caption Use the font captioned controls (like buttons, drop-downs, etc.)
icon Use the font used to label icons
menu Use the font used in menus (drop-down menus and menu lists)
message-box Use the font used in dialog boxes
small-caption Use the font used for labeling small controls
status-bar Use the fonts used in window status bar

❮ Riferimento tela HTML