margin: right not working

Simple example :
I don't know what is bogging here.
All i want is horizontal space between cells

<html>
<head>

<style>
.tableau1 {
width:auto;
margin: right 20px;
background-color: aquamarine;
color: black;
font-style: normal;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
}
</style>
</head>
<body>

<table class="Tableau1">
<tr>
<td>
<img src="image.jpg">
</td>
<td>
<img src="image.jpg">
</td>
<td>
<img src="image.jpg">
</td>
<td>
<img src="image.jpg">
</td>
</tr>
</table>
</body>

</html>
 

Attachments

  • 2023-08-21 11_25_10-Table try.html - Opera.png
    2023-08-21 11_25_10-Table try.html - Opera.png
    353.5 KB · Views: 0
Back
Top