排版標記

<P> :
<P>稱爲段落標記。做用:爲字、畫、表格等之間留一空白行。

原本<P>是一圍堵標記,標於一段落的頭尾,但從 HTML 2.0 開始己不須要</P>做結尾。 html

<P> 的經常使用參數: 如:<p align="center"> 瀏覽器

  • align="center"
    可選值:right, left, center。
    內定值: align="left"

例子: ide

原始碼 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.
<P>Here'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. ui

Here's the next paragraph. spa

<BR> :
<BR>稱爲換行標記。做用:令字、畫、表格等顯示於下一行。

因爲瀏覽器會自動忽略原始碼中空白和換行的部分,這令到<BR>成爲最經常使用的標記之 一。由於不管你在原始碼中編好了多漂亮的文章,若不適當地加上換行標記段落標記, 瀏覽器只會將它顯示成一大段。 設計

錯誤示範:(郵局可不會接受一行過的地址) htm

原始碼 566 E Boston Post RD
Mamaroneck NY 10543-9982
United States of America
結果 566 E Boston Post RD Mamaroneck NY 10543-9982 United States of America

正確例子: ci

原始碼 566 E Boston Post RD
<BR>Mamaroneck NY 10543-9982
<BR>United States of America
結果 566 E Boston Post RD
Mamaroneck NY 10543-9982
United States of America

<HR> :
<HR>稱爲水平線。做用:插入一條水平線。

<HR> 之參數修改:
以: <HR align="LEFT" size="2" width="70%" color="#0000FF" noshade> 爲例。
數學

  • align="LEFT"
    設定線條置放位置,可選擇:left;right;center 三種設定值。

  • size="2"
    設定線條厚度,以像素做單位,內定爲 2。

  • width="70%"
    設定線條長度,能夠是絕對值(以像素做單位)或相對值,內定爲 100%。

  • color="#0000FF" 『只適用於IE』
    設定線條顏色,內定爲黑色。 #0000FF 表明藍色,亦能夠採用顏色的名稱,即 text="blue" 。

  • noshade
    設定線條爲平面顯示,若刪去則具陰影或立體,這是內定值。

例子: it

原始碼 <HR>
<HR align="LEFT" size="4">
<HR align="LEFT" size="2" width="70%" color="#0000FF" noshade>
<HR align="LEFT" size="4" width="70" color="#008000">
顯示結果



<CENTER> :
<CENTER>稱爲居中標記。做用:令字、畫、表格等顯示於中間。

這標記原先是 Netscape 所定義,後來其它瀏覽器都支持它,但你會發現不少標記已有 align="CENTER" 的參數,<CENTER>彷佛多餘了,事實上它仍是經常使用的標記之一,其簡單 易用,經常使用於文字上,對於己加有 align="CENTER" 參數的 <TABLE> 標記亦要不厭其煩 地加上居中標記,因有狻多瀏覽器不支持<TABLE> 標記中的 align="CENTER" 參數。

例子:

原始碼 <CENTER>Chris's First Homepage</CENTER>
<CENTER>What's new</CENTER>
<CENTER>My profile</CENTER>
結果
Chris's First Homepage
What's new
My profile

<PRE> :
<PRE>稱爲預設格式標記。做用:令文件按照原始碼的排列方式顯示。

這標記容許保留你於原始碼中輸入的空白及 Return。細看如下例子你即可體會到此標記的 威力。除了運用一大堆表格標記以外你只有採用這標記纔能有此效果。

能以<PRE>標記產生對 效果,或產生多於一行的空白纔算上乘!

例子:

原始碼
    <pre>   Creation of Webpage Log Analysis I

    Composer Learning  459 407 480 522 547 586 673
    HTML Advanced      200 268 296 358 385 453 506</pre>
顯示結果
      Creation of Webpage Log Analysis I  

    Composer Learning  459 407 480 522 547 586 673
    HTML Advanced      200 268 296 358 385 453 506

<DIV> :
<DIV>稱爲區隔標記。做用:設定字、畫、表格等的擺放位置。

<DIV>應用於 Style Sheet(式樣表)方面會更顯威力,它最終目的是給設計者另外一種組織 能力,有 Class ; Style ; title ; ID 等屬性,將會於【Style Sheet】一節才做詳述,這處只介紹 一個屬性設定。
以 <DIV align="center"> 爲例:

  • align="center"
    可選值:center ; left ; right 。決定字、畫、表格等居中、靠左或靠右。
    <DIV align="center"> 的做用和居中標記 <CENTER>同樣,前者是由 HTML3.0 開始 的標準,後者是通用己久的標示法。

例子:

原始碼 <DIV align="center">Chris's First Homepage
<br>What's new
<br>My profile</DIV>
結果
Chris's First Homepage
What's new
My profile

<NOBR> :
<NOBR>稱爲不折行標記。做用:令某些文字不因太長而繞行,一 顯示於同一行或下一 行。它對住址、數學算式、一行數字、程式碼等尤其有用。

例子:(其中 Chris's Creation of Webpage 將不被分開而顯示於同一行。)

If you want to know how to create you own homepage quickly, don't miss <NOBR>Chris's Creation of Webpage</NOBR> which will help you a lot.
結果 If you want to know how to create you own homepage quickly, don't miss Chris's Creation of Webpage which will help you a lot.

<WBR> :
<WBR>稱爲建議折行標記。做用:預設折行部位。
它沒有侵犯到 <BR> 的責任,只是做建議而已,若觀者的系統解像度夠高的話,那麼它是 不會折行的。

例子:(若不加<WBR>標記,整個網址會顯示於下一行。)

原始碼 Please visit my other homepage which locate at http://www.geocities.com/SiliconValley/<WBR>Sector/8234/index.html There are many softwares for download. I think you will really love that place.
結果 Please visit my other homepage which locate at http://www.geocities.com/SiliconValley/Sector/8234/index.html There are many softwares for download. I think you will really love that place.
相關文章
相關標籤/搜索