Created
September 3, 2020 15:33
-
-
Save RuslanHolovko/f2e671cf1379bc54e1a9fefb11023d39 to your computer and use it in GitHub Desktop.
button center position in table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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