Home [CSS] Right Align Div CSS
Post
Cancel

[CSS] Right Align Div CSS

[Problem Description]

I have some HTML:

1
2
3
<div style="text-align: right;">
This is some text in a div element!
</div>

HTML div align right not working?

[Issue Solved]

"float:right;" worked great!
“sapn” also works.

1
2
3
<div style="float:right;">
This is some text in a div element!
</div>

right-align-div-css
text-align-right-in-a-span

This post is licensed under CC BY 4.0 by the author.