Skip to content

Instantly share code, notes, and snippets.

@kreo
Last active August 29, 2015 14:22
Show Gist options
  • Save kreo/eed398e863a933b4c5e1 to your computer and use it in GitHub Desktop.
Save kreo/eed398e863a933b4c5e1 to your computer and use it in GitHub Desktop.
absolute center block
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>absolute center block</title>
<style>
*{
margin: 0;
padding: 0;
}
html, body {
height: 100%;
padding: 0px;
margin: 0px;
}
body{
background-color: #39393F;
background-image: -webkit-linear-gradient(top, #404047, #39393F);
}
.image{
display: block;
width: 450px;
height: 200px;
margin: 0 auto;
background-position: center;
background-size: 100%;
background-repeat: no-repeat;
background-image: url(https://picjumbo.com/wp-content/uploads/HNCK4490-1300x867.jpg);
}
@media (max-width: 600px){
.image{
width: 70%;
}
}
.center{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
</style>
</head>
<body>
<span class="center image"></span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment