Skip to content

Instantly share code, notes, and snippets.

@RuslanHolovko
Created September 3, 2020 15:33
Show Gist options
  • Save RuslanHolovko/f2e671cf1379bc54e1a9fefb11023d39 to your computer and use it in GitHub Desktop.
Save RuslanHolovko/f2e671cf1379bc54e1a9fefb11023d39 to your computer and use it in GitHub Desktop.
button center position in table
<table
align="center"
style="background: url('https://source.unsplash.com/random/300x500');
background-size:contain;
background-repeat: no-repeat;
max-width: 700px;
width: 100%;">
<tbody>
<tr align="center">
<td>
<table style="width: 100%">
<tr>
<td>
<img src="https://source.unsplash.com/random/300x500" alt=""
style="width: 45%;
opacity: 0;
visibility: hidden;">
</td>
</tr>
</table>
<table>
<tr align="center">
<td>
<button>button td</button>
</td>
</tr>
</table>
<table style="width: 100%">
<tr>
<td>
<img src="https://source.unsplash.com/random/300x500" alt=""
style="width: 50%;
opacity: 0;
visibility: hidden;">
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment