search
HomeWeb Front-endHTML TutorialHow to insert spaces in HTML
How to insert spaces in HTMLDec 26, 2018 am 11:51 AM
htmlspace

In front-end development, sometimes you need to add spaces to the page, so how to add them? This article will introduce you to the method of inserting spaces in HTML pages. I hope it will be helpful to you. [Related video tutorial recommendation: HTML tutorial]

How to insert spaces in HTML

1. Type the space

in the html page, we can Insert spaces by typing the "space" key.

Example: Type one space in p.p1 and type 5 spaces in p.p2. Note: At this time, type "space" in half-width state

<p class="p1">测试文字| php中文网!</p>
<p class="p2">测试文字|     php中文网!</p>

Effect picture:

How to insert spaces in HTML

It can be seen that no matter we type 1 space in HTML Or 5 spaces, or multiple other spaces, the web browser will automatically collapse these spaces into just one space.

So how do we display multiple typed spaces? You can type the "space" key in the full-width state, for example:

<p class="p1">测试文字| php中文网!</p>
<p class="p2">测试文字|      php中文网!</p>

Effect picture:

How to insert spaces in HTML

Note: full-width spaces will be interpreted as Chinese characters, and whitespace It is displayed in the form of Chinese characters and is displayed in real numbers (as many as there are are displayed).

Or use the

 tag to solve this problem (type "space" in half-width state), for example: <pre class='brush:php;toolbar:false;'><p class="p1">
    <pre class="brush:php;toolbar:false">测试文字| php中文网!

    

测试文字|     php中文网!

Rendering:

How to insert spaces in HTML

##2. Use the space character of html

We can use the character entities that represent spaces in html to insert spaces in the html page. Let’s take a look at the character entities that represent spaces in html:

 Character: a continuous blank space. The width of this space is affected by the font.

 Characters: Type half a "space" key (half the width of a Chinese character) in full-width mode.

 Characters: Type the "space" key in full-width mode (width of 1 Chinese character).

Let’s take a look at the effect:

<p class="p1">测试文字|  字符nbsp显示空格!</p><br /
<p class="p2">测试文字|&ensp;字符ensp显示空格!</p><br />
<p class="p3">测试文字|&emsp;字符emnsp显示空格!</p>

Rendering:


How to insert spaces in HTML## Description: The   and   characters The occupied width is basically not affected by the font and is quite robust.

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

The above is the detailed content of How to insert spaces 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
mysql空格表示什么mysql空格表示什么Jul 20, 2023 pm 05:17 PM

mysql空格是一种特殊字符,用于分隔关键字、标识符、值以及其他语句元素,空格可以在SQL语句中的多个位置使用,并且通常不会影响语句的执行。空格的用途:1、用于分隔关键字和标识符;2、用于分隔运算符和值;3、用于分隔函数、列和表别名;4、用于缩进和对齐。

全角空格与半角空格的不同之处全角空格与半角空格的不同之处Mar 25, 2024 pm 12:45 PM

全角空格与半角空格的不同之处在我们使用文字处理软件或者编辑文字内容的时候,有时候会遇到空格这个概念。空格在排版和格式化文本时是一个很基础的元素,不过很多人可能并不知道全角空格和半角空格之间的区别。在日常使用中,我们或许能感受到全角空格和半角空格在不同的情境下会产生不同的效果,但可能并没有意识到这其中的细微差别。首先,全角空格和半角空格的区别在于它们所占据的宽

vue怎么替换空格vue怎么替换空格Dec 22, 2022 am 09:40 AM

vue实现替换空格的方法:1、创建一个vue示例文件;2、通过正则表达式“string = string.replace(/\s/g," ");”替换所有的空格;3、通过“console.log(string);”输出替换后的字符串即可。

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

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

全角空格和半角空格有什么区别全角空格和半角空格有什么区别Mar 15, 2024 pm 03:49 PM

区别:1、全角空格的显示宽度与中文字符相同,占用两个字节,输入时需要使用中文输入法,而半角空格的宽度为中文字符的一半,占用一个字节,直接按下空格键即可输入;2、在文本排版时,全角空格使得布局更加宽松,而半角空格则更紧凑。

如何正确地在 Go 语言中使用空格如何正确地在 Go 语言中使用空格Mar 29, 2024 pm 03:42 PM

Go语言是一种简单、高效、并发性强的编程语言,它是由Google开发的一种开源语言。在Go语言中,空格的使用是非常重要的,它能够提高代码的可读性和易维护性。本文将介绍如何正确地在Go语言中使用空格,并提供具体的代码示例。为什么需要正确使用空格在编程过程中,空格的使用对于代码的可读性和美观性非常重要。恰当地使用空格可以让代码更加清晰、易读,从而减

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

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

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

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

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 Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment