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

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -