I have a web app that allows people to enter records. One of the fields is a description field. I want to be able to display the description field as the user has typed it. It should keep all the spacings and line returns. I can do this with the pre tag. I noticed that it didn't word wrap, so I added in the css for white-space pre-wrap. This works great on the webpage, but is horrible when it prints. When it prints, it cuts on the text that gets word wrapped. The printed version only shows as much of the line as possible on a single line, but doesn't continue or word wrap.
How do I get this to print properly.
How do I get this to print properly.