Answers for "text in center in css"

4

center text css

p {
  text-align: center;
}
Posted by: Guest on January-03-2021
20

how to center text in css

.class {
	text-align: center;
}
Posted by: Guest on February-15-2020
3

css text align center

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

text-align: center;

/* The inline contents are centered within the line box. */
Posted by: Guest on February-27-2021
2

css text align right

body {
  text-align: right;
}
Posted by: Guest on April-09-2020
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
0

center a text css

.center {
  text-align: center;
  
border: 3px solid green;
}
Posted by: Guest on August-26-2021

Browse Popular Code Answers by Language