CSS border-right 属性 详解
css3基础 2022-07-14 16:02:29小码哥的IT人生shichen
CSS border-right 属性
定义和用法
border-right 简写属性把右边框的所有属性设置到一个声明中。
可以按顺序设置如下属性:
如果不设置其中的某个值,也不会出问题,比如 border-right:solid #ff0000; 也是允许的。
另请参阅:
CSS 教程:CSS 边框
HTML DOM 参考手册:borderRight 属性
实例
设置右边框的样式:
p
{
border-style:solid;
border-right:thick double #ff0000;
}
完整实例【亲自试一试】:
<html>
<head>
<style type="text/css">
p
{
border-style:solid;
border-right:thick double #ff0000;
}
</style>
</head>
<body>
<p>This is some text in a paragraph.</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
CSS 语法
border-right: border-width border-style border-color|initial|inherit;
属性值
值 | 描述 |
---|---|
border-right-width | 规定右边框的宽度。参阅:border-right-width 中可能的值。 |
border-right-style | 规定右边框的样式。参阅:border-right-style 中可能的值。 |
border-right-color | 规定右边框的颜色。参阅:border-right-color 中可能的值。 |
inherit | 规定应该从父元素继承 border-right 属性的设置。 |
技术细节
默认值: | not specified |
---|---|
继承性: | no |
版本: | CSS1 |
JavaScript 语法: | object.style.borderRight="3px solid blue" |
更多实例
完整实例【所有右边框属性在一个声明之中】:
<html>
<head>
<style type="text/css">
p
{
border-style:solid;
border-right:thick double #ff0000;
}
</style>
</head>
<body>
<p>This is some text in a paragraph.</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示一个简写属性,用于把所有右边框属性设置在一条声明中。
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
注释:IE7 以及更早版本的浏览器不支持值 "inherit"。IE8 需要 !DOCTYPE。IE9 支持 "inherit"。