Forum Moderators: not2easy
<p style="text-align:left;">text on the left <span style="text-align:right;">text on the right</span></p> <p class="container">text on the left <span>text on the right</span></p>
.container {
position: relative; /* Reqd to pos absolute within */
text-align: left;
background-color: #fee; /* Demo only */
}
.container span {
position: absolute;
top: 0;
right: 0;
}
ps would be able to force the span in the above (my example) to take up the remaining text of the paragraph without writing extra characters?