HTML Pre tag is not displaying full line -


i using <pre> tag in html page not displaying full line. wanted display hwole 2 below lines:

     hello wish best. testing of multiline cutting print work order.multi formatting within email notifications , work order comments/notes     end line. last comment.     

but displaying

 <pre>     hello wish best. testing of multiline      end line. last comment.     </pre> 

does pre tag has fixed widht or something? suggestions welcomed.

you need overflow hidden stuff show in case overflow hidden. add scrollbar.

pre {     overflow: auto; } 

or need wrap pre tag if scrolling not option. use

pre {     white-space: pre-wrap; } 

now line wrap , show in next line while still maintaining white spaces.


Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -