Answers for "how to align the text in css"

CSS
6

text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}
Posted by: Guest on February-23-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
1

css text align center

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

Code answers related to "how to align the text in css"

Browse Popular Code Answers by Language