Skip to content

Instantly share code, notes, and snippets.

@jupegarnica
Created December 22, 2020 08:11
Show Gist options
  • Save jupegarnica/84798ec5ead99f826304f4732ffdb814 to your computer and use it in GitHub Desktop.
Save jupegarnica/84798ec5ead99f826304f4732ffdb814 to your computer and use it in GitHub Desktop.
10: Respect the Aspect
<div class="card">
<h1>Title Here</h1>
<div class="visual"></div>
<p>Descriptive Text. Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sed est error repellat veritatis.</p>
</div>
body {
display: grid;
place-items: center;
height: 100vh;
}
.visual {
aspect-ratio: 16/9;
background: wheat;
margin: 0.5rem 0;
}
.card {
width: 80%;
display: flex;
flex-direction: column;
background: lightpink;
padding: 1rem;
}
body {
font-family: system-ui, sans-serif;
}
h1 {
font-size: 1.5rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment