Question about text

liunx

Guest
Can I make my text look like one block?
meaning, The spacing between the words will be automaticley fixed.

Is it posibble?

ThanksDo you mean that you want a monospace font (every character is the same width) or you want to justify align?see image attachedIf you set a width on the containing element it should provide the desired effect.If you mean the justify align as well then it would be

<div style="text-align: justify; width: 250px;">

Content here

</div>

<!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS2/text.html#propdef-text-align">http://www.w3.org/TR/CSS2/text.html#propdef-text-align</a><!-- m -->
 
Back
Top