snarkyazoid
snarkyazoid

Reputation: 455

CSS: Text on either side of screen on each line?

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

Answers (3)

bookcasey
bookcasey

Reputation: 40501

Demo

p {display:inline;}
p+p{float:right;}

Upvotes: 1

Kishore
Kishore

Reputation: 1912

look at this this is a better approach http://jsfiddle.net/KWxhg/

Upvotes: 1

thejudge
thejudge

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

Related Questions