css div right align code example
Example 1: align div to the right
display:inline-block; float:right;
Example 2: how to align items in css
div
{
display:flex;
align-items:center;
justify-content:center;
}
Example 3: html align right
<p style="text-align:right;">Example</p>
Example 4: how to center align the html element in css examples
#inner {
width: 50%;
margin: 0 auto;
}
# center text
.center {
text-align: center;
border: 3px solid green;
}