container align right code example
Example 1: align div to the right
display:inline-block; float:right;
Example 2: how center content in css by using flex
display: flex;
width: 60%;
justify-content: center;
margin: 0 auto;
Example 3: 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;
}