Created
February 6, 2020 17:02
-
-
Save JoseRivas1998/1c3d6be35e5cfa645eb994f674edaad7 to your computer and use it in GitHub Desktop.
Image with caption overlay
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| background-color: #ffd2d2; | |
| } | |
| section { | |
| background-color: white; | |
| width: 960px; | |
| margin: 0 auto; | |
| padding: 20px; | |
| box-sizing: border-box; | |
| } | |
| .imgcontainer { | |
| display: inline-block; | |
| position: relative; | |
| text-align: center; | |
| color: white; | |
| width: 40%; | |
| } | |
| .imgcontainer>img { | |
| max-width: 100%; | |
| } | |
| .imgtext { | |
| background-color: blue; | |
| width: 100%; | |
| position: absolute; | |
| top: 75%; | |
| left: 50%; | |
| z-index: 21; | |
| transform: translate(-50%, -50%); | |
| padding: 5px 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <section> | |
| <h1>Hello world</h1> | |
| <div class="imgcontainer"> | |
| <img src="https://images.tinycountrygames.com/2211436e.png" alt=""> | |
| <div class="imgtext">TEST</div> | |
| </div> | |
| <div class="imgcontainer"> | |
| <img src="https://images.tinycountrygames.com/2211436e.png" alt=""> | |
| <div class="imgtext">TEST</div> | |
| </div> | |
| <div class="imgcontainer"> | |
| <img src="https://images.tinycountrygames.com/2211436e.png" alt=""> | |
| <div class="imgtext">TEST</div> | |
| </div> | |
| </section> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment