Frank Mause: Frage zum Wiki-Artikel „CSS“

Beitrag lesen

problematische Seite

Guten Tag,

ich bin gerade dabei , mich in HTML und CSS reinzufuchsen. Habe mein styles in eine css-datei ausgelagert.

Für h2 wird alles korrekt dargestellt.

Wenn ich allerdings einen anderen Hintergrund für h1 haben will funktioniert das für h1 nicht. Habe copy-paste gemacht und bei h1 nur andere Farbwerte eingetragen.

Wo ist der Fehler ?

Hier meine css-Datei:

<!doctype html>
<html lang="de">
  <head>

     <style>

    h1 {
        background-color: red;
       color: white;
       font: 150% cursive;
       border: thin solid black;
    }

    p {
      text-align: center;      
      background-color: red;
      color: lightblue;    	
    }

    h2 {
       background-color: yellow;
       color:red;
       font: 150% cursive;

    border-radius: .5em;
    border-color: black;
    font: 300% cursive;
    margin: 0;
    border: thin solid black;
        }

/* h1, h2{
//	background-color: orange;
	border-color: black;
	border-radius: 2.5em;
 	font: 150% cursive;
	border: thick solid black;
}

    p {
    	text-align: center; 
    	color: blue;
    /*	background-color:lightblue;
    	border-color: black;
    	border-radius: 2.0em ;
  	  	border: thick solid black;*/
    }*/ 

    </style>
  </head>

</html>

akzeptierte Antworten