Orlando: Hintergrund will sich nicht darstellen

Beitrag lesen

Hi Dennis,

zusätzlich zu dem, was meine Vorredner bereits angemerkt haben:

p
{
   font-family: "Arial Black",sans-serif;

^           ^ ^^^^^^^^^^

}

td
  {
   font-family: "Courier New",sans-serif;

^           ^ ^^^^^^^^^^

}

Setze Schriftarten, die aus mehr als einem Wort bestehen in Hochkommas und gib eine generische Schriftart am Ende an. Diese ist auf jedem System vorhanden, Arial Black wohl nicht. Der CSS-Validator hat auch noch einige Hinweise für dich:

http://jigsaw.w3.org/css-validator/validator?text=body+{ ++++font-size%3A+medium%3B ++++text-align%3A+justify%3B ++++color%3A+%2300B0B0%3B ++++background-color%3A+%23000040%3B ++++scrollbar-base-color%3A%23D80000%3B ++++scrollbar-highlight-color%3A%23000040%3B ++++scrollbar-track-color%3A000040%3B ++++scrollbar-arrow-color%3Aaqua%3B ++++scrollbar-3dlight-color%3Agrey%3B ++++background-attachment%3Afixed%3B ++++margin-left%3A100px%3B ++++margin-top%3A20px%3B ++++margin-right%3A20px%3B ++++margin-bottom%3A20px%3B } p +{ ++font-family%3A+Arial+Black%3B ++font-size%3A+medium%3B ++text-align%3A+justify%3B ++color%3A+%23000000%3B ++background%3A+%2354A7A7%3B +} a +{ ++font-weight%3A+bold%3B ++color%3A+%23FF0000%3B +} +a%3Alink +{ ++font-weight%3A+bold%3B ++color%3A+%23FF0000%3B +} +a%3Avisited +{ ++font-weight%3A+bold%3B ++color%3A+%23800040%3B +} +td +{ ++font-family%3A+Courier+New%3B ++font-size%3A+medium%3B ++text-align%3A+justify%3B +} +A%3Ahover +{ ++color%3A+%23FF0000%3B+font-size%3A+10px%3B+font-weight%3A+bold%3B +}&warning=1&profile=css2&usermedium=all

Um HTML zu prüfen, verwende http://validator.w3.org/

LG Orlando