You are here : cssCSS 3border-spacing

border-spacing - CSS 3

The border-spacing property sets the distance between the borders of adjacent cells (only for the "separated borders" model).


Syntax

border-spacing: length|initial|inherit;


Example

table
	{
	   
	border-collapse: separate;
	   
	border-spacing: 10px 50px;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference