how to center text in css
.class {
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;
}
how to center div
<!DOCTYPE html>
<html>
<head>
<style>
.center {
margin: auto;
width: 80%;
border: 3px solid #73AD21;
padding: 10px; # deals with margins within the element itself
margin: 20px; # deals with area around outside of element
}
</style>
</head>
<body>
<h2>Center Align Elements</h2>
<p>To horizontally center a block element (like div), use margin: auto;</p>
<div class="center">
<p><b>Note: </b>Using margin:auto will not work in IE8, unless a !DOCTYPE is declared.</p>
</div>
</body>
</html>
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