Hi everyone,
Ich versuche mich grad an CSS,
vor knapp 10min angefangen
und schon hängts
Folgender code:
Das Problem:
Mit h1 arbeitet er, mit p nich
Mit anderen Worten:
Alles in h1-Tags (<h1>) ist rot
Allles in p-Tags (<p>) ist Standard, also schwarz -.-
weiß jemand Rat?
So findet man es im Verlauf des Textes...
mfg
Deniz
Ich versuche mich grad an CSS,
vor knapp 10min angefangen
und schon hängts
Folgender code:
HTML:
<head>
<title>Titel</title>
<!-- CSS-Bereich ... -->
<style type="text/css">
<!-- Css für <p> -->
p {
color:red;
}
h1 {
color:red;
}
</style>
<!-- Css Bereich Ende -->
</head>
Das Problem:
Mit h1 arbeitet er, mit p nich
Mit anderen Worten:
Alles in h1-Tags (<h1>) ist rot
Allles in p-Tags (<p>) ist Standard, also schwarz -.-
weiß jemand Rat?
HTML:
<p>Css-test</p>
<p>Test<h1>Hallo</h1><h2>Hi</h2></p>
mfg
Deniz