+ 2
What is <pre> ?
5 odpowiedzi
+ 14
It allows you to reproduce the format of your HTML in the same way you write it in your text editor, generally the browser removes spaces by default, using <pre> the browser will read your HTML as you wrote it.
E.g
https://code.sololearn.com/WnuhrmR599RW/?ref=app
+ 8
pre stand for preformatted. it will produce same text included blank space as you write in text editor.
+ 2
It preserves allkind of formatting within it.
+ 1
Thank you very much for your answer
0
Now I understand this tag!