style align center html code example

Example 1: css center text

/* To center text, you need to use text-align. */

.centerText {
  text-align: center; /* This puts the text into the center of the 
  screen. */
}

/* There are also other things that you can use in text-align:
left, right, and justify. Left and right make the test align to the
right or left of the screen, while justify makes the text align both
sides by spreading out spaces between some words and squishing others. */

Example 2: how to center text in css

.class {
	text-align: center;
}

Example 3: text align justify

text-align: justify;

Example 4: text align css

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

Example 5: css text align left

body {
  text-align: left;
}

Example 6: align centre

.headerTwoDiv{
			margin:1% auto;
			margin-right: auto; margin-left: auto; width: 21%; 
			padding-top: 11px;
		}