html - How to align both words to start from the same column -
i have following code:
<center> <div> first <br /> second </div> </center> i want leave text @ center, need align both words start same column.
how can it?
try this:
<div style="text-align:center"> <div style="display:inline-block;text-align:left"> first<br /> second </div> </div>
Comments
Post a Comment