What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

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