Table of Contents
pre标签
语义化" >语义化
嵌套html其它标签
问题
文本过长时,溢出
html元素" >渲染html元素
意外的空格
扩展
定义一下tab的大小
Using fixed-width fonts
Using syntax highlighting
Summary
Home Web Front-end HTML Tutorial A brief introduction to the html
 tag
					

A brief introduction to the html
 tag

Jul 08, 2017 am 10:58 AM
html introduce Label

我们经常会在要保持文本格式的时候使用pre标签,比如当我们要展示源代码的时候,只要放一个pre标签,然后把源代码直接复制,粘贴,然后在页面上就可以保持好格式。不会像放在其它标签里那样,把换行和空格都自动折叠了。这里看一下pre是如何工作的呢?

pre标签

HTML里的pre元素,可定义预格式化的文本。在pre元素中的文本会保留空格和换行符。文本显现为等宽字体。
下面我们看一个示例,这里我使用的是一段css代码,你也可以换成其它的。如下:

body{
    background:#fff;
      font: 12px/24px 1.66;
}
Copy after login

当我们用pre包裹它们时

<pre class="brush:php;toolbar:false">body{
    background:#fff;
      font: 12px/24px 1.66;
}
Copy after login

会在浏览器上直接得到

 tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="244"    style="max-width:90%"/><br/>可以看出上面的tab,空格,换行都完整的保留下来了。<br/>我们可以把这段css代码放到其它元素下,如得到下面的图。<br/><img  src="/static/imghw/default1.png"  data-src="https://img.php.cn/upload/article/000/000/194/e9522b7619e9a198e14b9b77d7341a8c-1.jpg"  class="lazy"  title="A brief introduction to the html <pre alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="244"    style="max-width:90%"/><br/>很完美,以后就可以用pre来标识代码了。哪里想用放哪里,但这里还有一些可以优化。</p><h3 id="a-href-http-www-php-cn-html-html-yuyihua-html-target-blank-语义化-a"><a href="http://www.php.cn/html/html-yuyihua.html" target="_blank">语义化</a></h3><p>pre元素并不能代码放入,里面的内容是什么,可以是歌词,可以是代码,可以是其它文本。当pre元素来展示源代码的时候最好的方式是用code元素来包裹代码,这样既可以保持格式又可以代表语义,一举数得。如上面的代码可以改写为:</p><pre class='brush:php;toolbar:false;'><pre class="brush:php;toolbar:false">
<code>body{
    background:#fff;
      font: 12px/24px 1.66;
}</code>
Copy after login

嵌套html其它标签

pre中最好不要包含可以导致段落断开的标签(如:p,标题),虽然主流浏览器对此解析没有问题,但最好不要这样使用。存在着语义不明的情况,比如无法判断是想显示结构的不同展示,还是想把标签作为代码的一部分显示,最好对这里只包含代码文本,对于标签进行转义如'>'对应'>'。
pre元素中允许的文本可以包括物理样式和基于内容的样式变化,还有链接、图像和水平分隔线。当把其它标签放到pre块中时,会被直接渲染为正常元素。
示例如下:

<pre class="brush:php;toolbar:false">[ti:凡人歌]
[ar:李宗盛]
[al:凡人歌]
[00:00](music)
[00:28]你我皆凡人,生在人世间;
[00:35]终日奔波苦,一刻不得闲;
[00:43]既然不是仙,难免有杂念;
[00:50]<a href="#">道义放两旁</a>,利字摆中间。
Copy after login

显示出来样式如下:

 tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="216"    style="max-width:90%"/></p><h2 id="问题">问题</h2><h3 id="文本过长时-溢出">文本过长时,溢出</h3><p>如果我们在pre里放置的文本过长,中间也没有换行,由于pre会保持文本的格式,导致文本溢出。<br/>演示如下:</p><pre class='brush:php;toolbar:false;'><p style="width:500px; background:red; padding:20px;">
<pre class="brush:php;toolbar:false">[ti:凡人歌][ar:李宗盛][al:凡人歌][00:00](music)[00:28]你我皆凡人,生在人世间;[00:35]终日奔波苦,一刻不得闲;[00:43]既然不是仙,难免有杂念;[00:50]<a href="#">道义放两旁</a>,利字摆中间。
Copy after login

浏览器中的表现

 tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="546"    style="max-width:90%"/><br/><strong>解决方法1</strong>:给pre标签定义横向滚动条</p><pre class='brush:php;toolbar:false;'>pre{
  overflow:auto;
}
Copy after login

解决方法2:使用text-wrapping
直接定义pre标签里的css属性white-space的值为pre-wrap。

pre{
   white-space:pre-wrap;
}
Copy after login

渲染html元素

上面已经提到过,html元素会在pre标签中直接被解析。如果我们想显示这些标签,只要把这些特殊符号转换为符号实体,就可以了。如: "<" 代表 "<",">" 代表 ">"。

<pre class="brush:php;toolbar:false"><code><ul class="main-list"> 
 <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
 <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
 <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
 </ul></code>
Copy after login

也可以使用一些线上的工具去完成这个转义的过程,这里可以百度一下,随便找了一个截了个图

 tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="432"    style="max-width:90%"/></p><h3 id="意外的空格">意外的空格</h3><p>有时候我们把代码直接复制到页面时,<a href="http://www.php.cn/code/6852.html" target="_blank">编辑器</a>会给我们自动缩进对齐,这里其实是很好的,但这里遇到pre标签就有麻烦了,比如:</p><pre class='brush:php;toolbar:false;'><p>
    <pre class="brush:php;toolbar:false"><code><ul class="main-list"> 
     <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
     <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
     <li><a href="#">藏新线才是最西藏的进、出线</a></li> 
     </ul></code>
Copy after login

结果效果如下:

 tag" > tag" alt="A brief introduction to the html <pre class="brush:php;toolbar:false"> tag" width="462"    style="max-width:90%"/></p><p>建议使用下面的形式来对代码进行排版。</p><pre class='brush:php;toolbar:false;'><p>
<pre class="brush:php;toolbar:false"><code>第一行
//中间代码进行格式化
最后一行</code>
Copy after login

扩展

定义一下tab的大小

pre{
  tab-size:2;
}
Copy after login

但这个IE浏览器支持情况不太好。视情况来选择吧。
tag" alt="A brief introduction to the html

 tag"    style="max-width:90%"  style="max-width:90%">

Using fixed-width fonts

can facilitate typesetting and looks more comfortable.

Using syntax highlighting

This needs to be done with the help of some libraries, such as highlight.js. How to use it, please Baidu.

Summary

The above are just some small summaries. If there are any other applications or black technologies not mentioned here, you can mention them in the comments and discuss them together.

The above is the detailed content of A brief introduction to the html

 tag. For more information, please follow other related articles on the PHP Chinese website!

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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

See all articles