Is there a standard way to enable text to be pushed to the left, at least on mobile devices, when the user swipes across the element from right-to-left or vice-versa? I do not want to show a scrollbar and there will not be a pointer device so a title
attribute wouldn't work.
XML
<div><span>A long line of text...</span></div>
CSS
div
{
overflow: hidden;
white-space: nowrap;
}