I have read that the 'pre' tag will collapse all white spaces and tabs into one space ,but it doesn't do so in for me.
why is it so? is it depended on web browser or i should do something more?
|
I have read that the 'pre' tag will collapse all white spaces and tabs into one space ,but it doesn't do so in for me. why is it so? is it depended on web browser or i should do something more? |
|||
|
|
PRE tags will leave white space as you have typed it. The purpose is just that. If you don't use a pre tag, standard HTML will collapse white space as you have written. Use PRE if you are interested in preserving white space, not collapsing it. Here is an example in JSFiddle. This will preserve white space:
This will collapse white space:
|
|||||||
|
|
The PRE tag will just keep you contents in the same format as you wrote it. it is used to keep your "preformatted" text the same way as you wrote it. |
|||
|
|