Habe das Problem, dass wenn man mit der Maus über der Tabelle ist, nicht der neue Div-Layer eingeblendet wird:
Der neue Layer ist .meldung, die Tabelle #ad_bottom...
Hat jemand eine Idee warum?
Code:
#ad_bottom
{
float: right;
background: url('../img/ad.jpg') repeat-y left top;
border: 1px;
border-style: solid;
border-color: black;
border-right-width: 2px;
padding: 2px;
}
#ad_bottom img
{
border: 1px;
border-style: solid;
border-color: black;
border-left-width: 2px;
padding: 2px;
margin-bottom: 5px;
}
.meldung
{
border: 1px;
border-style: solid;
border-color: #FF0000;
position: absolute;
bottom: 90px;
left: 220px;
width: 200px;
background: #FFDFDF;
padding: 4px;
text-align: justify;
display: none;
}
#ad_bottom:hover .meldung
{
display: inline;
}
Der neue Layer ist .meldung, die Tabelle #ad_bottom...
Hat jemand eine Idee warum?