开发手册 欢迎您!
软件开发者资料库

CSS - 概述

CSS概述 - 适用于初学者和高级开发人员的CSS教程使用示例,通过简单易用的步骤学习级联样式表。 CSS2和CSS3属性的完整参考手册。

大纲与边框非常相似,但几乎没有什么重大差异和减号;

  • 大纲没有占用空间.

  • 轮廓不一定是矩形.

  • 大纲是各方面总是一样的;你不能为元素的不同边指定不同的值.

注意 :  IE 6或Netscape 7不支持大纲属性.

您可以使用CSS设置以下大纲属性.

  • outline-width 属性用于设置轮廓的宽度.

  • outline-style 属性用于设置轮廓的线条样式.

  • outline-color 属性用于设置轮廓的颜色.

  • 轮廓属性用于设置以上三个属性在单一陈述中.

outline-width属性

大纲 - width 属性指定要添加到框中的轮廓的宽度.它的值应该是一个长度或其中一个值 thin,medium或thick,就像border-width属性一样.

零像素的宽度意味着没有大纲.

这是一个例子 :

                           This text is having thin outline.      

                           This text is having thick outline.      

                           This text is having 5x outline.      

   

The outline-style Property

outline-style属性指定围绕元素的线条(实线,点线或虚线)的样式。 它可以采用以下值之一:

  • none : 无边界。 (相当于outline-width:0;)

  • solid :大纲是一条实线。

  • dotted: 大纲是一系列的点。

  • dashed:大纲是一系列短线。

  • double: 大纲是两条实线。

  • groove :大纲看起来好像被刻在页面中。

  • ridge : 轮廓看起来与凹槽相反。

  • inset : 大纲使框看起来像是嵌入在页面中。

  • outset : 大纲使框看起来像是从画布中出来。

  • hidden : 与无相同

这是一个例子:

                           This text is having thin solid  outline.      

                           This text is having thick dashed outline.      

                           This text is having 5x dotted outline.      

   

The outline-color Property

outline-color属性允许您指定轮廓的颜色。 它的值应该是颜色名称,十六进制颜色或RGB值,与颜色和边框颜色属性一样。

这是一个例子:

                           This text is having thin solid red  outline.      

                           This text is having thick dashed green outline.      

                           This text is having 5x dotted blue outline.      

   

The outline Property

outline属性是一个速记属性,允许您以任何顺序但在单个语句中指定前面讨论的三个属性中的任何一个的值。

这是一个例子:

                           This text is having thin solid red outline.      

                           This text is having thick dashed green outline.      

                           This text is having 5x dotted blue outline.