CSS - border-right-color 属性



设置元素右边框的颜色;默认值是元素的颜色。

可能的值

  • color − 任何有效的颜色值。

适用于

所有 HTML 元素。

DOM 语法

object.style.borderRightColor = "red";
始终在 border-right-color 属性之前声明 border-right-style 或 border-style 属性。

以下示例显示了此属性的效果 -


	 <html>
	 <head>
	 	 	<style>
	 	 	 	 p.example1 {border-style: solid;
	 	 	 	 	 	border-right-color: rgb(255, 0, 0);
	 	 	 	 	 	}
	 	 	 	 p.example2 {border-style: solid;
	 	 	 	 	 	 border-right-color: rgba(255, 0, 0,0.4);
	 	 	 	 	 	 }
	 	 	 	 p.example3 {border-style: solid;
	 	 	 	 	 	 border-right-color: hsl(0, 100%, 50%);
	 	 	 	 	 	 }
	 	 	 	 p.example4 {border-style: solid;
	 	 	 	 	 	 border-right-color: hsla(0, 100%, 50%, 0.3);
	 	 	 	 	 	 }
	 	 	 	 p.example5 {border-style: solid;
	 	 	 	 	 	 border-right-color: transparent;
	 	 	 	 	 	 }
	 	 	</style>
	 </head>
	 <body>
	 	 	 	 <p class="example1">right border with RGB color value</p>
	 	 	 	 <p class="example2">right border with RGBA color value</p>
	 	 	 	 <p class="example3">right border with HSL color value</p>
	 	 	 	 <p class="example4">right border with HSLA color value</p>
	 	 	 	 <p class="example5">right border with transparent color value</p>

	 </body>
	 </html>