“CSS Alinhamento de texto” Respostas de código

CSS Alinhamento de texto

h1 {
  text-align: center;
}

h2 {
  text-align: left;
}

h3 {
  text-align: right;
}
naly moslih

Texto CSS alinhado à esquerda

body {
  text-align: left;
}
TheDevStar

CSS Texto alinhado à direita

body {
  text-align: right;
}
TheDevStar

Texto alinhado CSS

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Dr. Hippo

Centro de alinhamento de texto CSS

body {
  text-align: center;
}
TheDevStar

Texto alinhado à esquerda CSS

body {
  text-align: left; 
}
Jonathan Gomez

Respostas semelhantes a “CSS Alinhamento de texto”

Procure respostas de código populares por idioma

Procurar outros idiomas de código