Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.empty-container {
display: grid;
padding: 20px;
background: gray;
};
</style>
<body>
<p>Test that an empty masonry container still renders padding.</p>
<div class="empty-container">
</div>
</body>
</html>