Home  >  Article  >  Web Front-end  >  Detailed explanation of the difference between

and
tags in html

Detailed explanation of the difference between

and
tags in html

黄舟
黄舟Original
2017-07-03 11:38:148254browse

Use of newline mark 0c6dc11e160d3b678d68754cc175188a The line break tag 0c6dc11e160d3b678d68754cc175188a is a tag without an end. As long as the 0c6dc11e160d3b678d68754cc175188a tag is used anywhere in the HTML file, when the file is displayed in the browser, the text after this position will be displayed on the next line, and the a0f54d8ff1fdae84a79073348f9b8da7 mark is a line break mark! Please note! In a general text file, as long as you press the En
Line break mark0c6dc11e160d3b678d68754cc175188a on the keyboard, the
Line break mark0c6dc11e160d3b678d68754cc175188a is a mark without an end. Anywhere in the HTML file, as long as the < ;br> mark, when the file is displayed in the browser, the text after this position will be displayed on the next line. The 0c6dc11e160d3b678d68754cc175188a mark is the line break mark!
Please note! In a general text file, just pressing the Enter key on the keyboard will produce a line break. However, pressing the Enter key in an HTML file is useless. We must use a specific tag 0c6dc11e160d3b678d68754cc175188a to make them produce a line break. ! example:
​                     The following is the content quoted by :

<html>
<
head
>
<title>br标记的使用</title>
</head>
<body>
清平调<br>
云想衣裳花想容,<br>
春风拂槛露华浓,<br>
若非群玉山头见,<br>
会向瑶台月下逢。<br>
</body>
</html>

Let’s see what effect it will have~!

Someone wants to ask how to center the entire poem on the page? If we want to achieve centering, we can use the 0924dee0cd7289410ae31a41da8e55facontent94b3e26ee717c64999d7867364b1b4a3 we learned before to achieve it!
example:
​                     The following is the quoted content:

<html>
<head>
<title>br标记的使用</title>
</head>
<body>
<p align=center>清平调<br>
云想衣裳花想容,<br>
春风拂槛露华浓,<br>
若非群玉山头见,<br>
会向瑶台月下逢。<br>
</p>
</body>
</html>

==================================== ==============

Use of paragraph marke388a4556c0f65e1904146cc1a846bee
and text identified by the e388a4556c0f65e1904146cc1a846bee mark represent text in the same paragraph. In the browser, in addition to line breaks, different paragraphs of text are sometimes separated by a line of blank space to distinguish different paragraphs of text. The syntax is as follows:
e388a4556c0f65e1904146cc1a846beeText94b3e26ee717c64999d7867364b1b4a3
But in general applications, a e388a4556c0f65e1904146cc1a846bee mark is often added after the text to be divided into paragraphs. Example:
​                     ​ ​ ​ The following is the quoted content:

<html>
<head>
</head>
<title><p>标记的使用</title>
</head>
<body>
清平调<p>
云想衣裳花想容,<p>
春风拂槛露华浓,<p>
若非群玉山头见,<p>
会向瑶台月下逢,<p>
</body>
</html>

So what is the difference between 0c6dc11e160d3b678d68754cc175188a and e388a4556c0f65e1904146cc1a846bee? In layman's terms, when they branch into rows, the spacing between the rows is larger than that of the rows

e388a4556c0f65e1904146cc1a846bee We can take a look:
​                     The following is the quoted content:

<html>
<head>
</head>
<title><p>标记的使用</title>
</head>
<body>
清平调<br>
云想衣裳花想容,<br>
春风拂槛露华浓,<p>
若非群玉山头见,<p>
会向瑶台月下逢,<p>
</body>
</html>

This way you can see the effect, do you see it?


The above is the detailed content of Detailed explanation of the difference between

and
tags in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn