javascript - Word Wrap in CSS3 -


is there other way word-wrap text inside div? can't use word-wrap in css since can use css1 , css2.

*use javascript or css

thank you!

.test_wordwrap {   position: absolute;   top: 45px;   left: 20px;   width: 250px;   white-space: pre-wrap; } 

maybe help:

.myclass {      white-space: normal;      overflow: hidden; } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -