Last active
September 27, 2022 15:52
-
-
Save alicraigmile/6186c534491d86c95ae47330d26cf133 to your computer and use it in GitHub Desktop.
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> | |
<title>BBC Bitesize</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
background: black; | |
} | |
.outer { | |
position: relative; | |
height: 400px; | |
} | |
.inner { | |
margin: 0; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -50%); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="outer"> | |
<div class="inner"> | |
<img src="https://ichef.bbci.co.uk/news/976/cpsprodpb/B22E/production/_121141654_screenshot2021-10-19at16.36.26.png.webp"> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment