“Como alinhar o texto no CSS” Respostas de código

Texto CSS alinhado à esquerda

body {
  text-align: left;
}
TheDevStar

Como centralizar o texto no CSS

.class {
	text-align: center;
}
k-vernooy

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

/* Character-based alignment in a table column */

text-align: center;

/* The inline contents are centered within the line box. */
Mehedi Islam Ripon

Como alinhar o texto no CSS

/*style-part*/

.center{
		text-align:center;
	   }
<!--html-part-->

<p class="center"> How to text align </p>
Courageous Cow

Respostas semelhantes a “Como alinhar o texto no CSS”

Perguntas semelhantes a “Como alinhar o texto no CSS”

Mais respostas relacionadas para “Como alinhar o texto no CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código