CSS Border-collapse Property

Posted The: 08/08/2008 At: 9:40

Last Edited: 15/08/2008 At: 18:49

The border-collapse property of CSS is to specify whether or not the borders of table cells should collapse into a single border. Used when styling tables with CSS.

Possible Values

  • separate - (Default)
  • collapse

Example:

table, td {
  border:1px solid blue;
  border-collapse: collapse;
  border-spacing: 0;
}

Inherited? YES!

Comments: [0]

© Brugbart Webdesign