ich habe eine tabelle, wo in jedem td per <img> tag ein bild eingebunden wird!
das bild ist 50x50 px und die td auch!
das problem ist:
unten gibt es einen 2px weißen streifen, welcher nicht beabsichtigt ist und auch irgendwie durch nix wegwill.... die größe des bildes, alle positionierungs und abstandsänderungen waren erfolglos.
kann mir jemand helfen?
css code:
Code:
.tableMap{ border-collapse: collapse; border-spacing:0px; } .tdMap{ background-color: #FFF; height: 50px; width: 50px; padding: 0px; border: 2px solid black; } .mapImage{ height: 50px; width: 50px; }
PHP-Code:
$str = '<table class="tableMap">';
for($x=0; $x<5; $x++){
$str.= '<tr>';
for($y=0; $y<5; $y++){
if($map[$x][$y]['accID'] == $this->accID){
$str.= '<td class="tdMap"><img class="mapImage" src="../img/background/grass.gif" alt="bla" /></td>';
}
else{
$str.= '<td class="tdMap"><img class="mapImage" src="../img/background/grass.gif" alt="bla" /></td>';
}
}
$str.= '</tr>';
}
$str.= '</table>';
return $str;
Kommentar