views:

59

answers:

1

Similar to this easy one, except how do you get a third text group to show up dead center, along with one "dead left", and one "dead right"?

+1  A: 
<div>
<p style="float: left; width: 33%;">stuff on the left</p>
<p style="float: left; width: 33%; text-align: center">center</p>
<p style="float: right; width: 33%; text-align: right">stuff on the right </p>
</div>
maggie
brilliant! thanks!
ina