Tüm görüntüler aynı stil ve boyutunu olmasına rağmen Firefox, çoklu görüntüleri ilk resme dolgu ekleyerek

0 Cevap php

Hey guys, bu kod parçası var:

while($uno=mysql_fetch_assoc($results)) {
    echo '<div class="wcapt"><a class="neutral" href="../images.php?id=' . $uno['id'] . '"><img class="pad" src="'. $uno['thumbs'].'" border="0" /></a><br/><center><p>'.$uno['name'].'</p></center></div>';
}

Ve tüm görüntülerin tam olarak aynı boyutta olması için bağlantı. İşte Mainstyles.css bulunuyor

div.wcapt
{
    border: 1px solid green;
    float: left;
    padding: 0;
    margin: 3px;
    font: 11px/1.4em Arial, sans-serif;
    color: gray; 
    }
img.pad
{
    padding: 5px;
    }
a.neutral
 {
    display: inline;
    font-weight: normal;
    text-transform: none;
    background-color: transparent;
    color: white;
    text-decoration: none;
    }   

The problem is that Firefox adds some extra padding to the first image, and only the first image. And this is really annoying. Here's a screenshot of the page: alt text

0 Cevap