“Tamanho da fonte CSS” Respostas de código

Tamanho da fonte CSS

.class {
	font-size: 12px;
}
k-vernooy

Tamanho da fonte HTML

<span style="font-size:20px;"></span>
epicDev

CSS Alterar o tamanho do texto

p {
	font-size: 150% /*px, cm, in, etc.*/; 
}
jopxxl

Tamanho da fonte CSS

/* <absolute-size> values */
font-size: xx-small;
font-size: x-small;
font-size: small;
font-size: medium;
font-size: large;
font-size: x-large;
font-size: xx-large;
font-size: xxx-large;

/* <relative-size> values */
font-size: smaller;
font-size: larger;

/* <length> values */
font-size: 12px;
font-size: 0.8em;

/* <percentage> values */
font-size: 80%;

/* Global values */
font-size: inherit;
font-size: initial;
font-size: unset;
Mehedi Islam Ripon

Tamanho da fonte CSS

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

p {
  font-size: 14px;
}
naly moslih

Tamanho da fonte CSS

// to scale font size in relation to its parent element
style="font-size: 2vw;"
Poised Penguin

Respostas semelhantes a “Tamanho da fonte CSS”

Perguntas semelhantes a “Tamanho da fonte CSS”

Mais respostas relacionadas para “Tamanho da fonte CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código