HTML CSS examples for CSS Property:white-space
Change paragraph to Pre formatted layout
<html> <head> <style type="text/css"> p<!--from w ww . ja v a 2s. c o m--> { white-space:pre; } </style> </head> <body> <p> The quick brown fox jumps over the lazy dog </p> </body> </html>