border-collapse

Values: collapse (separate is the default- rarely used): e.g.: border-collapse:collapse;

By default, each cell has a border in a table. border-collapse:collapse will allow you to make so that the borders between cells are "collapsed" -- made so that they are the width specified in their styles and not twice as wide. It also effects the outer, table border.See w3schools for details.

Back to Knowledge Dump