[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>