zerko: Tabellenrahmen mit CSS für jede Zelle

Beitrag lesen

.rahmen-tabelle-grau {
 border: 1px dashed #999999;
}

.BorderFormat  {
  border-width:1px;
  border-style:dashed;
  border-color:#999999;
}

oder noch genauer...

.BorderFormat  {

/* Rand -> oben */
  border-top-width:1px;
  border-top-style:dashed;
  border-top-color:#999999;

/* Rand -> rechts */
  border-right-width:1px;
  border-right-style:dashed;
  border-right-color:#999999;

/* Rand -> unten */
  border-bottom-width:1px;
  border-bottom-style:dashed;
  border-bottom-color:#999999;

/* Rand -> links*/
  border-left-width:1px;
  border-left-style:dashed;
  border-left-color:#999999;
}