How to make text area scroll right and left?

0
Hello Experts Is there any way by which we can make text area scrollable Right and Left?
asked
2 answers
0

You can do this by using styling (for CSS, see https://stackoverflow.com/questions/21293456/scroll-horizontally-starting-from-right-to-left-with-css-overflowscroll)

answered
0

Hi,

check CSS overflow-x Property

 

overflow-x: visible|hidden|scroll|auto|initial|inherit;

visible: The content is not clipped, and it may be rendered outside the left and right edges. This is default
hidden: The content is clipped - and no scrolling mechanism is provided
scroll: The content is clipped and a scrolling mechanism is provided
auto: Should cause a scrolling mechanism to be provided for overflowing boxes
initial: Sets this property to its default value
inherit: Inherits this property from its parent element

answered