码迷,mamicode.com
首页 > 其他好文 > 详细

hr属性(转载)

时间:2017-02-25 17:01:45      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:pixel   --   属性   das   finish   竖线   设置   get   shadow   

用简单的“hr”语句就能实现多样化的分割效果: 

基本的:<hr width=300 size=1 color=#5151A2 align=center noshade>。其中 width 规定线条的长度,还可以是百分比;color 表示颜色,size 表示厚度;align 规定线条位置,有left、right、center;noshade 表示是否有立体效果。


  两头渐变透明:

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

 

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


  右边渐变透明:

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

 

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


  画虚线:

<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%,所以前三条设置的对齐看不到效果

 

1、普通分隔线:<hr>

2、分隔线宽度属性:<hr width=50%> 或者 <hr width=250> (宽度为实际点数或百分比)

3、分隔线位置属性:<hr align=right width=50%> (位置分为 Left、Center、Right 三种)

4、分隔线厚度属性:<hr style="height:10px"> (奇怪,height=10 似乎不能起到效果)

5、分隔线无阴影属性:<hr style="height:10px" noshade>

6、分隔线彩色属性:<hr color=red> 或者 <hr color=#FF0000> (颜色可调)

7、渐变颜色的分隔线: 
<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>

8、中心透明的分隔线: 
<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>

9、中心不透明的分隔线: 
<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>

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

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

12、虚线: 
<hr style="border-top: 2px dashed; border-bottom: 2px dashed; height: 2px" color=black>

13、竖线: 
<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>

hr属性(转载)

标签:pixel   --   属性   das   finish   竖线   设置   get   shadow   

原文地址:http://www.cnblogs.com/zhao2117/p/6442159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!