J'utilise la balise HTML IMG pour créer un lien vers une image et je veux la centrer dans un div, mais je n'y arrive pas.
Mon html est :
<div class="alimgholder">
<img title="<?php echo $album_title;?>" alt="<?php echo $album_title;?>" src="<?php echo $album_pic;?>">
</div>
Mon css est :
.alimgholder
{
width:160px;
height:120px;
overflow:hidden;
float:left;
}
.alimgholder img
{
background-color: #EEEEEE;
background-position: center 25%;
background-repeat: no-repeat;
display: block;
}