center text css
p {
text-align: center;
}
center text css
p {
text-align: center;
}
css how to center text
/* Using flex to center anything*/
.parent{
display: flex;
justify-content: center; /* Centering Horizantly */
align-items: center; /* Centering Vertically */
/* Every element inside this div will be centered*/
}
/* Using Line Height*/
.main-div{
width: 50%;
height: 40px;
}
.main-div p{
line-height: 40px; /* Same as parent height*/
/* p will be centered vertically inside its parent div*/
}
/* CSS Property */
p{
text-align: center;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us