Created
March 18, 2023 15:27
-
-
Save ozh/ed18687a91b56496db1375afcbd80994 to your computer and use it in GitHub Desktop.
Center div in body
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
<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