Answers for "how to display a header in the center of the column in css"

CSS
0

how to display a header in the center of the column in css

P { text-align: center }
H2 { text-align: center }
Posted by: Guest on October-20-2020
0

how to display a header in the center of the column in css

P.blocktext {
    margin-left: auto;
    margin-right: auto;
    width: 8em
}
...
<P class="blocktext">This rather...
Posted by: Guest on February-17-2021

Code answers related to "how to display a header in the center of the column in css"

Browse Popular Code Answers by Language