Hallo,
ich übe gerade ein wenig in CSS, da ich demnächst eine Prüfung habe (bin ein kompletter Newcomer).
Habe mal das erstellt:
HTML
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
}
h1 {
color: red;
margin-left: 40px;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
das funktioniert.
Wenn ich jetzt aber CSS extern speichere und im HTML verlinke, reagiert die HTMLSeite nicht mehr auf die Farbänderung von Background, obwohl ich an sich nur mit copy/paste gearbeitet habe.
So sieht dann das HTML aus:<!DOCTYPE html><html>
<head>
<link rel="stylesheet" type="text/css" href="neu 6.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
und so CSS (extern):
<style>
body {
background-color: black;
}
h1 {
color: blue;
margin-left: 40px;
}
</style>
Alles anzeigen
Textfarbe und margin lassen sich problemlos ändern.
Danke für Eure Antworten