selector { property: value; [property: value;]... }
/* ... */
/* Make all table cells have centered bold text. */
td { text-align: center; }
td { font-weight: bold; }
/* This means the same thing. */
td {
text-align: center;
font-weight: bold;
}