I have the following code in my .css file:
h2.spielbox {
margin-bottom:80px;
color:#f00;
}
a.spielbox {
text-decoration:none;
background-color:#aff;
}
However, in my html file, the h2 style is not appearing, but the a-style does:
<div class="spielbox" style="float:left;width:320px"><h2>Testberichte</h2>
It seems like I may be missing something about CSS?