What do hr and br mean in HTML? What are the functions?

藏色散人
Release: 2018-10-18 16:06:48
Original
38885 people have browsed it

This article mainly introduces to you the definition and usage of the hr and br tags in HTML.

The content of this article is very simple and easy to understand. Even for new HTML novices, the definition and usage of some basic tags are easy to master.

So in our HTML/css front-end interview questions, we occasionally encounter such simple questions.

Below we will introduce the definition and usage of hr and br tags with simple examples.


The tag


indicates that a simple newline character can be inserted. The
tag is an empty tag (meaning it has no closing tag, so this is an error:
). In XHTML, place the closing tag within the opening tag, i.e.
.


Label code example:

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>br换行符简单示例</title>
<head>
</head>
<body>
<p>这是一段文字,一段文字,一段文字</p>
<p>这是一段文字,一段文字<br>br后的一段文字</p>
</body>
</html>
Copy after login

The effect is as follows:

What do hr and br mean in HTML? What are the functions?

##Note:
The label is simply Starts a new line, and when the browser encounters a

tag, it usually inserts some vertical spacing between adjacent paragraphs.


Tag

The
tag creates a horizontal line in an HTML page. Horizontal rules visually separate a document into parts.


Tag code example:

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>hr水平分隔线简单示例</title>
<head>
</head>
<body>
<p>这是一段文字,一段文字,一段文字</p>
<hr>
<p>这是一段文字,一段文字</p>
</body>
</html>
Copy after login
The effect is as follows:

What do hr and br mean in HTML? What are the functions?

This article is about

HTML The definition and usage of the hr and br tags are very simple. I hope it will be helpful to friends in need!

If you want to learn more about front-end related knowledge, you can follow the PHP Chinese website

HTML video tutorial, css video tutorial, Bootstrap tutorial, etc. Related tutorials, everyone is welcome to refer to and study!

The above is the detailed content of What do hr and br mean in HTML? What are the functions?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
br hr
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template