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