css text right code example
Example 1: css right
.right {
position: fixed; /* the fixed pos makes it work */
right: /*how much you want to move it right
put % or px or rem at end of the amount */;
}
Example 2: center text css
p {
text-align: center;
}
Example 3: css text align center
body {
text-align: center;
}
Example 4: css text align right
body {
text-align: right;
}
Example 5: how to push text to the right css
padding-left: 3px;
Example 6: text-align attribute in css
text-align:inherit;