html的文字樣式、下行線、刪除線、上標、下標等實現方式

先看效果以下:字體

代碼以下:spa

<del>del標籤刪除線</del><br/>
            <strike>strike標籤刪除線</strike><br/>
            <s>s標籤刪除線</s> <br/>
            <u>u標籤下劃線</u><br/>
            <p style="text-decoration: underline;">樣式設置下行線</p></FONT><br/>
            <b>加粗文字</b> <br/>
            <i>斜文字</i> <br/><br/>
            <tt>等寬字體</tt> <br/>
            上標<sup>2</sup> <br/>
            下標<sub>20</sub> <br/>

 

 

 

用簡單的「hr」語句就能實現多樣化的分割效果: 
最基本的:<hr width=300 size=1 color=#5151A2 align=center noshade>。其中 width 規定線條的長度,還能夠是百分比;color 表示顏色,size 表示厚度;align 規定線條位置,有left、right、center;noshade 表示是否有立體效果。3d


  兩頭漸變透明:code

<hr width=80% size=3 color=#5151A2 style="FILTER: alpha(opacity=100,finishopacity=0,style=3)">orm

 

--------------------------------------------------------------------------------blog


  右邊漸變透明:ci

<hr width=80% size=3 color=#5151A2 style="FILTER: alpha(opacity=100,finishopacity=0,style=1)">it

 

--------------------------------------------------------------------------------io


  畫虛線:table

<hr width=80% size=1 color=#5151A2 style="border:1 dashed #5151A2">

 

--------------------------------------------------------------------------------


  畫雙線:

<hr width=80% size=3 color=#5151A2 style="border:3 double green">

 

--------------------------------------------------------------------------------


  立體效果:

<hr width=80% size=3 color=#5151A2 style="filter:progid:DXImageTransform.Microsoft.Shadow(color#5151A2,direction:145,strength:15)">

 

--------------------------------------------------------------------------------


  紡棰形:

<hr width=80% size=30 color=#5151A2 style="filter:alpha(opacity=100,finishopacity=0,style=2)">

 

--------------------------------------------------------------------------------


  鋼針效果:

<hr width=80% size=3 color=#5151A2 style="filter:progid:DXImageTransform.Microsoft.Glow(color=#5151A2,strength=10)">

 

<hr>標籤的做用是產生一線水平線

<hr>標籤的屬性包括

 

屬性 描述 DTD
align
  • center
  • left
  • right
規定水平線的排列。 TF
noshade noshade

當設置爲 true 時,水平線呈現爲純色(2D 效果)。

當設置爲 false 時,水平線顯示爲雙色凹槽(3D 效果)。

TF
size
  • pixels
  • %
規定水平線的厚度(高度)。 TF
width
  • pixels
  • %
規定了水平線的寬度。 TF

 

看下面的例子

<hr align="center">

<hr align="left">

<hr align="right">

<hr noshade="true">

<hr noshade="false">

<hr size="5">

<hr width="500px">

<hr align="left" noshade="false" size="4" width="500px" color="#ff0000">

顯示結果分別爲:









沒有設置寬度的水平線默認爲100%,因此前三條設置的對齊看不到效果

 

一、普通分隔線:<hr>

二、分隔線寬度屬性:<hr width=50%> 或者 <hr width=250> (寬度爲實際點數或百分比)

三、分隔線位置屬性:<hr align=right width=50%> (位置分爲 Left、Center、Right 三種)

四、分隔線厚度屬性:<hr style="height:10px"> (奇怪,height=10 彷佛不能起到效果)

五、分隔線無陰影屬性:<hr style="height:10px" noshade>

六、分隔線彩色屬性:<hr color=red> 或者 <hr color=#FF0000> (顏色可調)

七、漸變顏色的分隔線: 
<hr style="filter:alpha(opacity=5,finishopacity=100,style=1);height:10px" color=green>

<hr style="filter:alpha(opacity=100,finishopacity=5,style=1);height:10px" color=blue>

八、中心透明的分隔線: 
<hr style="filter:alpha(opacity=0,finishopacity=100,style=2);height:12px" color=orange>

<hr style="filter:alpha(opacity=0,finishopacity=100,style=3);height:12px" color=#FF00FF>

九、中心不透明的分隔線: 
<hr style="filter:alpha(opacity=100,finishopacity=0,style=2);height:15px" color=yellow>

<hr style="filter:alpha(opacity=100,finishopacity=0,style=3);height:15px" color=#00FFFF>

十、波浪線: 
<hr style="filter:wave(strength=9,freq=2,lightstrength=20,phase=9);height:15px" color=pink width=95%>

十一、三色線: 
<hr style="border-top: #ff0000 solid; color: #00ff00; border-bottom: #0000ff solid; height: 9px">

十二、虛線: 
<hr style="border-top: 2px dashed; border-bottom: 2px dashed; height: 2px" color=black>

1三、豎線: 
<hr style="height:100px; width:4px" color=orange>

<hr style="filter:alpha(opacity=100,finishopacity=5,style=2); height:100px; width:5px" color=navy>

<hr style="filter:alpha(opacity=0,finishopacity=100,style=2);height:100px; width:4px" color=red>

相關文章
相關標籤/搜索