Hello,
If I have an input field as such:
and CSS class:
Is there any way with CSS, to have the text auto-wrap when text hits the right hand side? Rather than auto scrolling to the right, pushing the text on the screen to the left.
Also, it is possible to have it as a single line and then auto expand vertically downward? Without JS is preferred, but it may be impossible
~R
typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;
If I have an input field as such:
Code:
<input class="myClass" type="text" name="test">
and CSS class:
Code:
.myClass{
width: 200px;
}
Is there any way with CSS, to have the text auto-wrap when text hits the right hand side? Rather than auto scrolling to the right, pushing the text on the screen to the left.
Also, it is possible to have it as a single line and then auto expand vertically downward? Without JS is preferred, but it may be impossible
~R
typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;