Thomas J.S.: Seltsame Erscheinung: Der Link

Beitrag lesen

Hallo Jens!

als style :

.lborder  {
      border-left : thin solid;
      border-bottom : thin solid;
      border-left-width : 1;
      border-bottom-width : 4;
      font-weight : bold;
      color : #C0C0C0;
      border-color : gold;
      width : 100%;
     }

So führt es garantiert zum Fehler.

1)border-left: thin (thin ist bereits für "width"!!)
2) es ist notwendig zu schreiben was es sein soll: em, pt, cm, px ?
also wenn schon dann:
.lborder  {
width : 100%;
border-left : solid 1px;
border-bottom : solid 4px;
border-color : gold;
font-weight : bold;
color : #C0C0C0;
}

Grüße
Thomas