search
HomeWeb Front-endHTML TutorialHow to wrap paragraph text in HTML? An article tells you the usage of line break tag br

This article mainly explains the usage of the br tag about HTML paragraph text line wrapping. In a paragraph, correct line wrapping can make the page more beautiful. Next, let’s take a look at this article about line wrapping of html paragraph text.

First of all, let’s take a look at the method of wrapping paragraph text:

Paragraphs in web pages Usually it is represented by

tag, then the text in a p tag will be displayed as one paragraph in the browser. Unless the browser frame is not enough, it will be displayed as one line. Only when the frame is not enough It will automatically wrap the line, but if we want to wrap the line manually, can we do it? Of course this is not possible. The line breaks you put in the code will appear to the browser as if they have not been moved. At most, there are just a few extra spaces. So what we are going to use now is the use of the br tag that we mentioned in this article.


The tag is a single tag. br is used to wrap the text and display it so that the browser can recognize it.

So, now let’s look at the code:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>PHP中文网</title>
</head>
<body>
<p>这里是PHP中文网,有着最全的在线教学的课程,包含了全部的编程学科,让你们能学到更多的东西。这里是PHP中文网,有着最全的
在线教学的课程,包含了全部的编程学科,让你们能学到更多的东西。这里是PHP中文网,有着最全的在线教学的课程,包含了全部的编
程学科,让你们能学到更多的东西。这里是PHP中文网,有着最全的在线教学的课程,包含了全部的编程学科,让你们能学到更多的东西
。</p>
</body>
</html>

Here is a paragraph, let’s see the effect:

How to wrap paragraph text in HTML? An article tells you the usage of line break tag br

As shown in the picture, it is all because the browser window is small. So there are too many rows displayed, which is very messy. But what we want is to stop the text from being displayed after any word and display it on the next line. (If you want to see more, come here: htmlOnline Video Tutorial)

Now let’s add the
tag to see the effect:

<body>
<p>这里是PHP中文网,有着最全的在线教学的课程,包含了全部的编程学科,让你们能学到更多的东西。</br>这里是PHP中文网,有着
最全的在线教学的课程,包含了全部的编程学科,让你们能学到更多的东西。</br>这里是PHP中文网,有着最全的在线教学的课程,包
含了全部的编程学科,让你们能学到更多的东西。</br>这里是PHP中文网,有着最全的在线教学的课程,包含了全部的编程学科,让你
们能学到更多的东西。</p>
</body>

Look at the above code, I put three br tags in it to see the effect:

How to wrap paragraph text in HTML? An article tells you the usage of line break tag br

Does it feel a lot clearer instantly? . This is how the br tag is used. We usually put the br tag where we want to break the line, so that it can work. Otherwise, if it is placed randomly or not placed, the text will not be displayed beautifully. We can use the br tag to adjust the formatting of the text. .

Okay, this article about HTML paragraph text wrapping ends here. If you have any questions, you can ask them below.

【Editor’s Recommendation】

What is the difference between b tag and strong tag in html? Summary of the difference between b and strong

What is the code for adding images in HTML? How to add image path correctly in html?

The above is the detailed content of How to wrap paragraph text in HTML? An article tells you the usage of line break tag br. 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
HTML超文本标记语言--超在那里?(文档分析)HTML超文本标记语言--超在那里?(文档分析)Aug 02, 2022 pm 06:04 PM

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

web前端笔试题库之HTML篇web前端笔试题库之HTML篇Apr 21, 2022 am 11:56 AM

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

总结HTML中a标签的使用方法及跳转方式总结HTML中a标签的使用方法及跳转方式Aug 05, 2022 am 09:18 AM

本文给大家总结介绍a标签使用方法和跳转方式,希望对大家有所帮助!

br是什么软件br是什么软件Dec 25, 2020 pm 03:06 PM

br是Adobe公司开发的一个组织工具程序,其全称是Adobe Bridge;br可以借助于编写ExtendScript脚本或使用内含的工作流程脚本示例将Adobe Creative Suite中各组件的繁重任务实现自动化。

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

html中document是什么html中document是什么Jun 17, 2022 pm 04:18 PM

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

br在html里是什么br在html里是什么Feb 20, 2021 pm 02:32 PM

br在html中是一个换行标签,它用于在HTML文档中插入一个简单的换行符;在需要手动换行地方,加入“<br>”即可实现内容换行。“<br>”标签是一个空标签,意味着它没有结束标签。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)