1
I have the following table in HTML
<table style="width: 100%">
<tr>
<td style="width: 50px">
<img src="https://s32.postimg.org/x1llms2ph/caixa_padrao.png">
</td>
<td>
<table>
<tr>
<td>Texto 1</td>
</tr>
<tr>
<td>Texto 2</td>
</tr>
<tr>
<td>Texto 3</td>
</tr>
</table>
</td>
</tr>
</table>
Can someone help me mount one just like it, but in DIV
and CSS
OK thanks, that’s what I wanted
– Hugo Borges
how do I get the image to the top? because the text1 is at the top, the image is not
– Hugo Borges
Just take the margin. It would look like this : . container img{float: left;margin-top: 0px;margin-right: 10px;}
– Ricardo Mota
Okay, it worked out here vlw
– Hugo Borges