Writing this html:
lorem ipsum
lorem ipsum
lorem ipsum
browser shows:
lorem ipsumlorem ipsumlorem ipsum
Is th
You can use the
tag to keep the line breaks.
lorem ipsum lorem ipsum lorem ipsumThe default style for
pre
tags is monospaced font, but that can be overriden.You can achieve the same effect without any extra default formatting using the white-space: pre CSS property.
lorem ipsum lorem ipsum lorem ipsumThere are several other values for
white-space
, but you should refer to the documentation to choose the most fitting one.Note that
pre
will treat every line break the same including the one following theor
tags. If you don't want them you will need to do:
lorem ipsum lorem ipsum ...