1127107-1-ref.html (436B)
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: nowrap; 9 10 width: 200px; 11 border: 1px solid black; 12 } 13 </style> 14 </head> 15 <body> 16 <div class="test"> 17 Does this text wrap? Does this text wrap? Does this text wrap? 18 Does this text wrap? 19 </div> 20 </body> 21 </html>