Quick question. The following code in Prince:
has the second line outside of the box and to the left (basically an overflow to the left). Most browsers (all that I have tested) limit the starting point to the left edge of the container (since no negative elements have been applied).
Is this a bug or have you elected to use overflow to the left in a block where text-align right is in use?
<div style="width: 50px; border: 1px solid black">
<div style="width: 100px">hello_there</div>
<div style="width: 0px; text-align: right">hello_there</div>
</div>
has the second line outside of the box and to the left (basically an overflow to the left). Most browsers (all that I have tested) limit the starting point to the left edge of the container (since no negative elements have been applied).
Is this a bug or have you elected to use overflow to the left in a block where text-align right is in use?