Html align text right but align it even?

  • Thread starter Thread starter Kimberly M
  • Start date Start date
K

Kimberly M

Guest
Hello new to htmling, any way possible to have text aligned right but have it even (as if it were aligned left). Sound Confussing try to explain:
TEXT
HERE
IS even
but when you align it to the right it doesn't go right under eachother evenly (the first letter of the word isn't under the first letter of the next word)

Anyway to html it that its to the right of the screen but falls right under eachother? thank you!
 
I do not know how to use programs, and am self taught on html. If I was needing to do this I would.
Create a table, and put in a cell and using cell spacing and possibly align right tags get the tags to sit the way you want. Since I have never done this I do not know if the words would sit the way you want though, give that a try, end the table whenever you want to do something else on the page.
 
That's Justified alignment. You're wanting it to be align left + align right, which is justified.
 
Put your text into a table or other structure. Do an align=right for the total structure and do an align=left within the structure.
Like this:
<html>
<table align=right>
<tr>
<td align=left>TEXT<br>HERE<br>IS even</td>
</tr>
</html>
 
Back
Top