0
how to align inline text
how to align a text in a sentence for example <p>This is a TEST</p> i want to align "This is a" in 'LEFT' and "TEST" in 'CENTER' how can i do that ?
2 ответов
+ 5
<p>This is a<span align=center>Test</span></p>
0
Use <span>.
<p><span class=left>This is a</span><span class=center>TEST</span></p>
Then, style those classes.