Lid |
|
ik denk dat het probleem ligt bij de class 'rij'
wil je nou wel of niet borders in het midden zeg maar ?
zet je css eerst is overzichtelijk neer en ga dan kijken wat je fout doet ?
table {
width: 95%;
margin-top: 20px;
margin-bottom: 20px;
border-collapse: collapse;
border: 1px solid black;
}
table tr.hoofd{
border: 1px solid black;
margin-bottom: 5px;
background: url(img/bg_input.jpg) repeat-x;
font-family:Arial, Helvetica, sans-serif;
font-size: 11px;color: #9a9a9a;height: 18px;
}
th{
font-weight:bold;
}
tr{
border-bottom: 1px dotted #dcdcdc;
text-align:center;
height: 25px;
border: 1px solid black;
}
tr.totaal{
border:0px;
border-top: 1px solid #dcdcdc;
margin-bottom: 5px;
margin-top: 5px;
height: 25px;
}
td.eerste{
text-align:left;
}
tr.rij{
border-bottom: 1px dotted #dcdcdc;
text-align:center;
height: 25px;
}
tr.rij:hover{
background-color: #f6fbff;
text-align:center;
height: 25px;
}
tr.rij2{
border-top: 1px dotted #dcdcdc;
text-align:center;
}
tr.rij2:hover{
background-color: #f6fbff;
text-align:center;
}
table { width: 95%; margin-top: 20px; margin-bottom: 20px; border-collapse: collapse; border: 1px solid black; } table tr.hoofd{ border: 1px solid black; margin-bottom: 5px; background: url(img/bg_input.jpg) repeat-x; font-family:Arial, Helvetica, sans-serif; font-size: 11px;color: #9a9a9a;height: 18px; } th{ font-weight:bold; } tr{ border-bottom: 1px dotted #dcdcdc; text-align:center; height: 25px; border: 1px solid black; } tr.totaal{ border:0px; border-top: 1px solid #dcdcdc; margin-bottom: 5px; margin-top: 5px; height: 25px; } td.eerste{ text-align:left; } tr.rij{ border-bottom: 1px dotted #dcdcdc; text-align:center; height: 25px; } tr.rij:hover{ background-color: #f6fbff; text-align:center; height: 25px; } tr.rij2{ border-top: 1px dotted #dcdcdc; text-align:center; } tr.rij2:hover{ background-color: #f6fbff; text-align:center; }
Ik zie zoiezo niks terug van bijvoorbeeld de kleuren en 'dotted' als rand in je tabel dus ik zou maar is gaan kijken of er geen fouten in je code zit. |