Answers for "how to have your paragraph middle css"

CSS
0

How to middle text css

/* This is how to put something in the middle of the screen */
/* We are using an h1 element as an example */

h1 {
left: 0;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
}
Posted by: Guest on November-30-2021

Browse Popular Code Answers by Language