1127107-1b-pre.html (583B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div.test { 6 /* Author expects this to prevent wrapping, and may add 7 "overflow:hidden;text-overflow:ellipsis" for nice effect: */ 8 white-space: pre; 9 10 /* BUT these (combined) seem to allow wrapping: */ 11 -ms-hyphens: auto; 12 -webkit-hyphens: auto; 13 hyphens: auto; 14 word-break: break-all; 15 16 width: 200px; 17 border: 1px solid black; 18 } 19 </style> 20 </head> 21 <body> 22 <div class="test">Does this text wrap? Does this text wrap? Does this text wrap? Does this text wrap?</div> 23 </body> 24 </html>