nag: CSS-Problem

Beitrag lesen

Hallo,

Auszug aus der CSS:
.ebene1 {
  font-family: verdana;
  font-size: 14
  font-weight: bold;
  color: #648864
}

nach font-size: 14 fehlt ein Semikolon!

richtig wäre:

.ebene1 {
  font-family: verdana;
  font-size: 14;
  font-weight: bold;
  color: #648864;
}

mfg NAG

--
signatur