介绍 |
css3.0参考手册中文版.适合学习和速查. css3常用属性介绍 例如:Border-image版本:CSS3 继承性:无 语法:border-image : none | <image> [ <number> | <percentage>]{1,4} [ / <border-width>{1,4} ]? [ stretch | repeat | round ]{0,2} 相关属性 : border-image:border-top-image , border-right-image , border-bottom-image , border-left-image border-corner-image:border-top-left-image , border-top-right-image , border-bottom-left-image , border-bottom-right-image 取值:none: 默认值。无背景图。 <image>: 使用绝对或相对 url 地址指定背景图像。 <number>: 边框宽度用固定像素值表示。 <percentage>: 边框宽度用百分比表示。 [ stretch | repeat | round ]: 拉伸 | 重复 | 平铺 (其中stretch是默认值。) 说明:使用图片作为对象的边界。 当table设置border-collapse为collapse无效。 |