I came across this template for a fluid newsletter-template. I can understand the way how it works: It's a 100%-wide table with three 'td's. The first and third 'td' wrap around the second 'td' and their function can be seen while making the browser window smaller. What confuses me is the fixed width of the second 'td'.
<html>
<head>
<title>Title</title>
</head>
<body>
<table width="100%">
<tr>
<td bgcolor="#ff0000"> </td>
<td width="600" bgcolor="#ffffff">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</td>
<td bgcolor="#ff0000"> </td>
</tr>
</table>
</body>
</html>
As you can see it has a defined static width of 600px, but when the window is smaller than 600px, it also gets smaller just like the other two 'td's beside it indead of giving you a horizontal scrollbar. Isn't a static width-definition "non-fluid"? How does this work?
by default table has table-layout:auto; thats why it is adjusting on mobiles. If it is set to table-layout:fixed; then it will break. check this link table-layout