align html code example
Example 1: css align center
<div class="parent">
<span>Hello World</span>
</div>
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: css center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 3: align div to the right
display:inline-block; float:right;
Example 4: center with css
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 5: css center text in div
parent-element {text-align:center;}
parent-element {position: relative;}
element-to-be-centered {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 6: how to center align text in html
you just need to add this line of code in your tag(<p>; h1, h2, td etc):
<p align="center">sample text<p/>