Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

Resumen

La propiedad font-weight de CSS especifica el peso o grueso de la letra. Algunos tipos de letra sólo están disponibles en normal y bold.

Valor inicialnormal
Applies toall elements. It also applies to ::first-letter and ::first-line.
Heredableyes
Mediavisual
Valor calculadothe keyword or the numerical value as specified, with bolder and lighter transformed to the real value
Animation typea font weight
Canonical orderel orden único no-ambigüo definido por la gramática formal

Sintaxis

font-weight: normal;
font-weight: bold;

/* Relativo al padre */
font-weight: lighter;
font-weight: bolder;

font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;
font-weight: 800;
font-weight: 900;

/* Valores globales */
font-weight: inherit;
font-weight: initial;
font-weight: unset;

Valores

normal 
Peso/grueso normal de la letra. Lo mismo que 400.
bold 
Grueso ancho (negrita). Igual que 700.
lighter 
Corresponde a un tipo de letra menos gruesa que el tipo del elemento padre (dentro de los valores disponibles).
bolder 
Corresponde a un tipo de letra más gruesa que el tipo del elemento padre (dentro de los valores disponibles).
100, 200, 300, 400, 500, 600, 700, 800, 900 
Pesos numéricos para los tipos de letra que nos permiten más flexibilidad que normal - bold. Si el peso especificado no existe en el tipo de letra escogido, un valor entre 600 y 900 se presentará con el valor más próximo disponible par dar una letra más oscura. De igual forma, un valor entre 100 y 500 se presentará con el valor más próximo disponible para dar una letra más clara. Esto significa que para los tipos de letra que sólo dispongan de normal y bold, cualquier valor entre 100 y 500 será normal y entre 600 y 900, será bold.

Ejemplos

HTML

<p>
  Alice was beginning to get very tired of sitting by her sister on the
  bank, and of having nothing to do: once or twice she had peeped into the
  book her sister was reading, but it had no pictures or conversations in
  it, 'and what is the use of a book,' thought Alice 'without pictures or
  conversations?'
</p>

<div>I'm heavy<br/>
  <span>I'm lighter</span>
</div>

CSS

/* Poner texto del párrafo en negrita. */
p {
  font-weight: bold;
}

/* Set div text to two steps darker than
   normal but less than a standard bold. */
div {
 font-weight: 600;
}

/* Sets text enclosed within span tag 
   to be one step lighter than the parent. */
span {
  font-weight: lighter;
}

Resultado

Especificaciones

Especificación Estado Comentario
CSS Fonts Module Level 3
The definition of 'font-weight' in that specification.
Candidate Recommendation Sin cambio
CSS Transitions
The definition of 'font-weight' in that specification.
Working Draft Define font-weight como animable.
CSS Level 2 (Revision 1)
The definition of 'font-weight' in that specification.
Recommendation Sin cambio
CSS Level 1
The definition of 'font-weight' in that specification.
Recommendation Definición inicial

Compatibilidad entre navegadores

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Apoyo básico 2.0 1.0 (1.7 or earlier) 3.0 3.5 1.3
Característica Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Apoyo básico 1.0 1.0 (1.0) 6.0 6.0 3.1

Etiquetas y colaboradores del documento

 Colaboradores en esta página: ivyixbvp, SphinxKnight, fscholz, teoli, Mgjbot, ethertank, Nathymig, RickieesES, HenryGR
 Última actualización por: ivyixbvp,