SOLUCIÓN FINAL
Aquí los códigos de la plantilla que da solución a este "
dilema".
Código HTML:
Ver original<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="style.css" /> <td class="data">celda 1
</td> <td class="data">celda 2
</td> <td class="data">celda 3
</td> <a id="link_00" class="link_w_img"></a> <a id="link_01" class="link_w_img"></a> <a id="link_02" class="link_w_img"></a>
Código CSS:
Ver original#tablaDatos
{
width: 100%;
}
#tablaDatos tr td
{
border: 1px solid #000000;
min-width: 40px;
min-height: 40px;
max-width: 25%;
max-height: 40px;
}
#container
{
width: 100%;
height: 50%;
}
#wrapper
{
/* el div wrapper ha de tener un tamaño fijo */
width: 100%;
min-width: 126px;
max-width: 126px;
height: 100%;
border: 1px solid #FFFFFF;
border-collapse: collapse;
position: relative;
left: 0px;
top: 0px;
}
#clear
{
clear: left;
}
.link_w_img
{
background: url('../01.JPG') no-repeat;
margin-left: 2px;
width: 40px;
height: 40px;
float: left;
cursor: pointer;
}
.actions
{
text-align: left;
overflow: auto;
overflow-y: hidden;
display: block;
}
.data
{
text-align: center;
}
Saludos!