HTML Element Style How to - Remove table cell td space arounding content








Question

We would like to know how to remove table cell td space arounding content.

Answer


<!DOCTYPE html>
<html>
<body>
  <table border="1" cellpadding="10">
    <tr>
      <td style="padding: 0;"><img src="http://placehold.it/100x100" /></td>
      <td>1) pic description</td>
    </tr><!--from www .j av  a2  s .  c  o  m-->
  </table>
</body>
</html>

The code above is rendered as follows: