HTML的排版标记,HTML的排版标记
【 tulaoshi.com - Html 】
■ 排版标记
<!--注解-- ; <P ; <BR ; <HR ; <CENTER ; <PRE ; <DIV ; <NOBR ; <WBR ;
欲明白本篇【HTML彻底剖析】之标记分类,请看 【标记一览】。
也请先明白围堵标记与空标记的分别,请看 【HTML概念】。
■<!--注解--:▲Top
像很多电脑语言一样,HTML 也提供注解功能。浏览器将忽略此标记中的文字(可以是 很多行)而不作显示,一般使用目的:
为文中不同的部分加上说明,方便日后修改。
<P 称为。作用:留一空白行。
本来<P是一个围堵标记,标于一段落的头尾,但从 HTML 2.0 开始已不需要</P作结尾。
<P 的常用参数: 如:<p ="center" ="center"
可选值:right, left, center。
默认值: align=""
例子: 原代码Here is the text for my paragraph. It does't matter how long it is,
how many space are between the words or when I decide to hit the return key.
It will create a new paragraph only when I begin the tag with another one.
<PHere's the next paragraph. 显示结果
Here is the text for my paragraph. It does't matter how long it is, how many space are between the words or when I decide to hit the return key. It will create a new paragraph only when I begin the tag with another one.
Here's the next paragraph.
<BR称为。作用:令其后的内容在下一行显示。
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/html/) 由于浏览器会自动忽略原代码中的空白和换行的部分,这使得<BR成为最常用的标记之一 。 因为无论你在原代码中编好了多漂亮的文章,若不适当地加上换行标记
来源:http://www.tulaoshi.com/n/20160129/1484082.html