Answers for "how to align text css"

0

center h1 css

h1 {
    width:500px;
    margin: 0 auto;
    background: gray;
    text-align: center;
}
Posted by: Guest on May-09-2020
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
6

text align css

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

css text align center

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

css text align left

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

Browse Popular Code Answers by Language