|
My textfield is n pixels long.
Were it to hold a string longer than n
its right tail end would be out of view.
How, with CSS, do I shift the contents of the relatively
short field to the left, so the right edge of its long
content is visible?
If the text within the field is shorter than n,
then text-align: right will align what's there - rightwards.
However, like I said, were the text > n
it will not display the tail edge, as I wish it could.
Can CSS cut this mustard?
|