You are here : cssCSS 3border-right

border-right - CSS 3

The border-right shorthand property sets all the right border properties in one declaration.The properties that can be set, are (in order): border-right-width, border-right-style, and border-right-color.It does not matter if one of the values above are missing, e.g. border-right:solid #ff0000; is allowed.


Syntax

border-right: border-width border-style border-color|initial|inherit;


Example

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


Output / Return Value


Limitations


Alternatives / See Also


Reference