CSS - border-right 属性



设置元素的右边框;value 是颜色的一种或多种,一个值用于 border-right-width,一个值用于 border-style

可能的值

可能的值为:

适用于

所有 HTML 元素。

DOM 语法


object.style.borderRight = "2px solid red";

border-right 属性允许您在一个属性中指定右行的颜色、样式和宽度。以下示例演示了这一点:


	 <html>
	 <head>
	 	 	<style>
	 	 	 	 p.example1{
	 	 	 	 	 	height:50px;
	 	 	 	 	 	border-right: blue 15px solid ;
	 	 	 	 	 	}
	 	 	 	 p.example2{
	 	 	 	 	 height:50px;
	 	 	 	 	 border-right: red 15px dashed;
	 	 	 	 	 }
	 	 	 	 p.example3{
	 	 	 	 	 	height:50px;
	 	 	 	 	 	border-right: green 15px groove;
	 	 	 	 	 	}
	 	 	</style>
	 </head>
	 <body>
	 	 	 	 <p class="example1">Check the right border!!!</p>
	 	 	 	 <p class="example2">Check the right border!!!</p>
	 	 	 	 <p class="example3">Check the right border!!!</p>
	 </body>
	 </html>