HTML

[HTML] HTML/br/line break tag

OOQ 2022. 8. 4. 09:03
728x90
SMALL

#HTML

#br

HTML recognizes multiple consecutive spaces or line breaks as a single space. Therefore, even if you break a line in the code or float it several times, it will be expressed by floating once.

If you want a line break inside a block element, use the br tag. The following is an example of line breaks using the br tag.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>HTML</title>
  </head>
  <body>
    <p>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec mollis nulla.
      Phasellus lacinia tempus mauris eu laoreet. Proin gravida velit dictum dui consequat malesuada.
    </p>
    <p>
      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean nec mollis nulla.<br>
      Phasellus lacinia tempus mauris eu laoreet. Proin gravida velit dictum dui consequat malesuada.
    </p>
  </body>
</html>

The first paragraph is represented by a line break in the code, but in a web browser it floats. The second paragraph breaks where the br tag is.

If you want to write continuously, enter &nbsp;

<!doctype html>
<html lang="en">
  <head>
  <meta charset="utf-8">
    <title>HTML</title>
  </head>
  <body>
    <p>Lorem&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ipsum dolor</p>
  </body>
</html>
728x90
LIST