Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <title>CSS Grid Test: Masonry item placement w/ Images</title>
  <link rel="author" title="Brandon Stewart" href="mailto:brandonstewart@apple.com">
</head>
<body>
<style>
grid {
  display: inline-grid;
  grid-template-columns: 400px;
}
img {
  width: 100%;
  height: auto;
  background-color: cyan;
}
</style>
<grid>
    <img width="400" height="400" />
</grid>
</body>
</html>