Skip to content

Instantly share code, notes, and snippets.

@nlucero
Created November 3, 2019 22:15
Show Gist options
  • Save nlucero/708afa1e2ff180bf2cce3009f2489d37 to your computer and use it in GitHub Desktop.
Save nlucero/708afa1e2ff180bf2cce3009f2489d37 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
margin: 10rem;
height: 30rem;
border: 1px solid gray;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 1px 1px 64px 0px;
}
.item {
width: 60%;
display: flex;
justify-content: center;
align-items: center;
}
.item img {
max-width: 100%;
}
</style>
</head>
<body>
<div class="container">
<div class="item"><img src="image.png" /></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment