Reputation: 455
I have some HTML code that goes a little something like this.
<p style="text-align:left;">Hello, Sir.</p>
<p style="text-align:right;">How are you today?</p>
And I want these lines to be on the same line. Is this possible in CSS?
Upvotes: 0
Views: 1651
Reputation: 351
something like
<div style="width:content_width">
<p style="float:left;">Hello, Sir.</p>
<p style="float:right;">How are you today?</p>
</div>
Upvotes: 3