Answers for "text alignment in css"

16

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. */
Posted by: Guest on May-24-2020
6

text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Posted by: Guest on February-23-2020
0

css text align left

body {
  text-align: left;
}
Posted by: Guest on April-09-2020
2

text-align css

.p{
text-align:center;
}
<div class="p">
<p style="text-align:center">HELLO</p>
</div>
Posted by: Guest on March-14-2021
0

text-align property in css

The different values of text-align are -
1) text-align: justify; (spreads throughout to the left and right)
2) text-align: center; (centers the text)
3) text-align: left; (the default value, shifts the text to left side)
4) text-align: right; (shifts the text to right side)
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language