I have this in my .css file:
h2.spielbox {
margin-bottom:80px;
color:#f00;
}
a.spielbox {
text-decoration:none;
background-color:#aff;
}
But in my html file, the h2 style is not displayed, but a-style works:
<div class="spielbox" style="float:left;width:320px"><h2>Testberichte</h2>
I don't seem to know anything about CSS?
source
share