当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 水平线样式

WEB设计综合
CSS+Javascript实现表格背景变色
网页中小三角的做法与使用(CSS特效)
为不同的浏览器载入不同CSS的二种方法
CSS滑动门教程
CSS hack浏览器兼容一览表
捷足先登学用CSS
英文字符自动换行方法
XSL中实现循环
XHTML第1天:选择什么样的DOCTYPE
XHTML第2天:什么是命名空间
XHTML第3天:定义语言编码
XHTML第4天:调用样式表
XHTML第5天:head区的其他设置
XHTML第6天:XHTML代码规范
Xhtml第7天:css入门知识
Xhtml第8天:CSS布局入门技术
Xhtml第9天:第一个css布局实例
Xhtml第10天:div自适应高度
Xhtml第11天:如何制作不用表格的菜单
Xhtml第12天:校验及常见错误

WEB设计综合 中的 水平线样式


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1491 ::
收藏到网摘: n/a

Horizontal lines are very useful separating your page to different sections, to add a simple horizontal line just type <hr>, and you will get this:
水平线对于分割页面的不同部分来说非常有用,你只需要通过输入<hr>就可以添加一条简单的水平线,具体如下:
hr-solid-1

But you can also create customized lines to fit with your webpage and to give you better mastery of the space you are manipulating on your page.
同时,你也可以根据网站的实际需要自定义水平线样式,这样一来,就可以更好地做好页面的空间规划。

Examples:
案例

<hr color="#c7c34c" size="2" width="50%">

gives this :
效果如下:
hr-solid-2

  • Color: color of the line : <hr color="#xxxxxx">
    颜色:水平线颜色<hr color=”#xxxxxx”>

  • Size: Height of Line expressed in pixels : <hr size="x">
    尺寸:水平线的高度以像素为单位计算:<hr size=”x”>

  • Width: Width of the line expresed either in percentage (%) or in pixels (in my example it is 50% of the original size) : <hr width="x%"> or <hr width="x">
    宽度:水平线的宽度以百分比或像素为单位(本例中设定为原始尺寸的50%。具体格式: <hr width="x%"> <hr width="x">

More Advanced:
更深入一点:
This :
如下:

<hr width="400" style="border: 3px dotted #0099CC" color="#000000" size="4">

gives:
得到下面这条水平线:

dotted-pic

In this case we used style :
本案例中我们所使用到的样式:

  • Border width is 3pixels (3 px)
    边框宽度:3像素
  • It is dotted
    点阵线
  • Base color is black : #000000
    基准色:黑色(#000000
  • Dots colored in blue: #0099CC
    点阵线颜色:蓝色(#0099CC

A last example to explain more, if still needed ;) :
最后一个案例:
This
代码

<hr width="400" style="border: 2px dashed #C0C0C0" color="#FFFFFF" size="6">

gives:
结果

dashed-pi

In this case just above :
上述案例解释:

  • Border width is 2pixels (2 px)
    边框宽度:2像素
  • It is dashed
    虚线
  • Base color is white : #FFFFFF
    基准色:黑色(#000000
  • Dashes colored in silver: #C0C0C0
    虚线颜色:银色(#0099CC

Possible styles are:
所有可以使用的样式如下:

  • dotted
    点阵线
  • dashed
    虚线
  • solid
    实线
  • double
    双实线
  • groove
    槽状线
  • outset
    外凸线
  • inset
    内嵌线
  • ridge
    背脊线

That's all I have to say about the horizontal lines !!
上述是关于水平线样式叙述的全部内容!

评论 (0) All

登陆 | 还没注册?