jquery - Text overflows on a div -
i have div right when text overflows, makes scroll. questions are, there way make scroll bars hidden until text overflows? , there way make overflows , down, , not left , right?
div { width: 100px; height: 100px; overflow: scroll; } <div>hellohellohellohellohellohellohellohellohellohellohellohellohello</div>
yes! use overflow: auto; , word-break: break-all;.
div { ... overflow-y: auto; overflow-x: hidden; word-break: break-all; } working fiddle: http://jsfiddle.net/631msl3l/2/
note: word-break not supported opera.
Comments
Post a Comment