Boa tarde,por algum motivo a imagem não está ficando pequena,por gentileza peço ajuda
Código:
index:
<?php
$busca = $banco->query(“select * from jogos”);
if(!$busca){
echo”<tr><td>Infelizmente a busca deu errado”;
}else{
while($reg=$busca->fetch_object()){
echo”<tr><td>capa’ class=’mini’/><td>$reg->nome”;
echo”<td>adm”;
}
}
?>
ESTILO:
body{
background-color:#ddd;
font-family:Tahoma;
}
div#corpo{
widht:800px;
margin:auto;
padding:20px;
background-color:#fff;
box-shadow:0px 0px 30px #777;
}
table.listagem{
widht:100%;
text-align:left;
border-collapse:collapse;
}
table.listagem tr{
height:50px;
}
table.listagem td{
#border:1px solid #ddd;
padding:10px;
}
table.listagem tr:nth-child(even){
background-color:#f2f2f2
}
table.listagem td:nth-child(1){
widht:50px;
}
table.listagem td:nth-child(3){
widht:90px;
}
img.mini{
width:50px;
}