I tried this code but I still have a small space between my 3 images what should I add more to remove those spaces. Here is the code below
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>img_test</title>
<style type="text/css">
table {
border: none;
border-collapse: collapse;
}
</style>
</head>
<body>
<table width="auto" border="0" border-spacing="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><img src="Sans titre-1.jpg" alt="" height="auto" width="100%"/></td>
</tr>
<tr>
<td><img src="Sans titre-1.jpg" alt="" height="auto" width="100%"/></td>
</tr>
<tr>
<td><img src="Sans titre-1.jpg" alt="" height="auto" width="100%"/></td>
</tr>
</tbody>
</table>
</body>
</html>