Skip to content

Instantly share code, notes, and snippets.

@dfa1234
Created January 31, 2018 20:04
Show Gist options
  • Save dfa1234/5ca255220011deec782bd7551eb215af to your computer and use it in GitHub Desktop.
Save dfa1234/5ca255220011deec782bd7551eb215af to your computer and use it in GitHub Desktop.
css magic box
<html>
<head>
<title>Snippets</title>
<style>
body{
margin:0;
}
.container{
display: flex;
justify-content: center;
align-items: center;
background: midnightblue;
width: 100%;
height: 100%;
}
.box{
background: lightblue;
}
@media(orientation: portrait){
.box{
width: 80%;
padding-top: 80vw;
}
}
@media(orientation: landscape){
.box{
height: 80%;
padding-right: 80vh;
}
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment