Skip to content

Instantly share code, notes, and snippets.

@alicraigmile
Last active September 27, 2022 15:52
Show Gist options
  • Save alicraigmile/6186c534491d86c95ae47330d26cf133 to your computer and use it in GitHub Desktop.
Save alicraigmile/6186c534491d86c95ae47330d26cf133 to your computer and use it in GitHub Desktop.
<!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