Skip to content

Instantly share code, notes, and snippets.

@ozh
Created March 18, 2023 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozh/ed18687a91b56496db1375afcbd80994 to your computer and use it in GitHub Desktop.
Save ozh/ed18687a91b56496db1375afcbd80994 to your computer and use it in GitHub Desktop.
Center div in body
<html>
<style>
html {
background-color:yellow;
}
body {
margin:0;
display:grid;
place-items:center;
height: 100vh;
background:#000000;
}
#centered-div {
background-color:red;
width:100px;
height:100px
}
</style>
<body>
<div id="centered-div">Centered in the body</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment