Tagged Questions
3
votes
3answers
6k views
Justify Text in a HTML/XHTML TextArea
I am currently trying to justify text in a textarea, unfortunately the CSS:
text-align: justify;
Doesn't work on the text like center, left and right do. I've tried this in both Firefox 3 and IE 7 ...
0
votes
0answers
27 views
How do I right justify text in graphics window using Python?
I am looking for a way to right justify my string. This is my code:
from graphics import*
def main():
win = GraphWin("Simple Editor", 600, 400)
win.setCoords(0,0,60,40)
#Text - ...
0
votes
4answers
271 views
Justify text to fill a div
What i want to do is something like this:
1 2 3 4 5
6 7
8 9 10 11
With this code:
<div style="text-align: justify;">
1 2 3 4 5
<br>
6 7
<br>
8 9 10 11
</div>
But it ...