Arkadaşlar aşağıdaki gibi w3c hatası görünüyor.

Line 230, Column 139: Element div not allowed as child of element b in this context. (Suppressing further errors from this subtree.)

<b><div class="favoritetitle">Poem Title</div></b>

Bu hata sanırım css dosyasını ilgilendiriyor. Css dosyasından nasıl bir düzenleme yapılarak düzeltilebilir. Css dosyasındaki ilgili yeri ve ilgili html kodları aşağıda. Yardımcı olursanız çok sevinirim. Teşekkürler.


 <style type="text/css">
 
 .favoritetitle{
width:300px;
height:40px;
float:left;
background-color:#9CC4E4;
text-align:center;
font-weight:bold;

}
.favoritevotes{
width:65px;
height:40px;
float:left;
background-color:#9CC4E4;
text-align:center;
font-weight:bold;
}
.favoriterating{
width:65px;
height:40px;
float:left;
background-color:#9CC4E4;
text-align:center;
font-weight:bold;
}
.favoritestars{
width:220px;
height:40px;
float:left;
background-color:#9CC4E4;
text-align:center;
font-weight:bold;
}
.favoritepoetslefttitle{
width:300px;
height:40px;
float:left;
background-color:#f3f5f6;
text-align:left;
}
.favoritepoetslefttitle a:link,
.favoritepoetslefttitle a:visited{
color: #333333;
}
.favoritepoetslefttitle a:hover
{
text-decoration: underline;
color: #9A2720;
}
.favoritepoetsleftvotes{
width:65px;
height:40px;
float:left;
background-color:#f3f5f6;
text-align:center;
}
.favoritepoetsleftrating{
width:65px;
height:40px;
float:left;
background-color:#f3f5f6;
text-align:center;
}
.favoritepoetsleftstars{
width:220px;
height:40px;
float:left;
background-color:#f3f5f6;
text-align:center;
}
</style>

<div class="toppoets">
<div class="toppoetstitle">All Time Favorite Poems</div>
<b><div class="favoritetitle">Poem Title</div></b>
<b><div class="favoritevotes"> Votes</div></b>
<b><div class="favoriterating">Rating</div></b>
<div class="favoritestars"> <b>Stars</b></div>

<div class="favoritepoetslefttitle"> <a href="%PERMALINK%">%TITLE%</a></div>
<div class="favoritepoetsleftvotes"> %VOTES%</div> 
<div class="favoritepoetsleftrating">%RATING%</div> 
<div class="favoritepoetsleftstars">%STARS%</div> 
 </div>