codecamp

CSS border-right 属性

CSS border-right 属性

实例

设置右边框的样式:

p
{
border-style:solid;
border-right:thick double #ff0000;
}

尝试一下 »

属性定义及使用说明

border-right 简写属性把左边框的所有属性设置到一个声明中。

可以设置的属性是(按顺序):border-right-width, border-right-style, and border-right-color.

如果上述值缺少一个,没有关系,例如border-right:solid #ff0000; 是允许的。

默认值: not specified
继承: no
版本: CSS1
JavaScript 语法: object object.style.borderRight="3px solid blue"


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持border-right属性。

注意IE7和更早的版本不支持"继承"的值。 IE8需要定义!DOCTYPE。 IE9支持"继承"。


Property Values

说明
border-right-width 指定右边框的宽度
border-right-style 指定右边框的样式
border-right-color 指定右边框的颜色
inherit 指定了border-right属性的值,应该从父元素继承


相关文章

CSS 教程: CSS Border

CSS3 border-radius 属性
CSS border-right-color 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }