1
Good morning, I would like to insert an image inside a column in the table, leaving it in the center.
The most I could do is according to code below, but this way it stays with a border around as if it were an extra column.
.Red {
height: 20px;
width: 20px;
background-color: red;
}
.Yellow {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 20px solid yellow;
}
.Verde {
height: 20px;
width: 20px;
background-color: green;
border-radius: 50%;
}
<table border="1" border border-bottom="1" border-left="double" border-right="1" border-top="1" border-bottom-style="solid" cellpadding="0" cellspacing="0">
<tr>
<td width="300" border="0" colspan="2">Teste Amarelo</td>
<td width="300" colspan="2">Teste Verde</td>
<td width="300" colspan="2">Teste Vermelho</td>
</tr>
<tr>
<td class="Yellow" width="20"></td>
<td width="280"></td>
<td class="Verde" width="20"></td>
<td width="280"></td>
<td class="Red"></td>
<td width="280"></td>
</tr>
</table>
Your text doesn’t match your example. You say you want to insert an image in the column, but in the code you make the column itself be image; apart from the fact that you literally defined 6 columns and it was strange that you "created extra columns". Got very confused.
– Woss
You have already tried to put the image in . png format?
– Rafael
It was the only way I could insert the image into the column, as an image I couldn’t make appear as well. The various columns are to stay in the size I want, but I know it’s not the right way to do it
– Guilherme Montagnani
Dude because you don’t put a <img> tag or even a <div> tag inside the TD and align it the way you want it. I couldn’t really understand what you want...
– hugocsl
I have a jsp that will bring the status name (Red, Green, Yellow) I need that inside the column in place of this variable appear the sign referring to the lighthouse. With Divs inside the TD I haven’t tried but with the img tag I can’t reference the variable (at least I don’t know how to do)
– Guilherme Montagnani