Skip to content

Instantly share code, notes, and snippets.

@eduardojmatos
Last active March 23, 2016 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduardojmatos/744252d0c453fd82cdd4 to your computer and use it in GitHub Desktop.
Save eduardojmatos/744252d0c453fd82cdd4 to your computer and use it in GitHub Desktop.
max-content and min-content
section {
max-width: max-content;
margin: auto;
border: 1px solid #000;
}
section p {
padding: 10px;
background-color: yellow;
}
section + section {
margin-top: 20px;
max-width: min-content;
}
section + section p {
background-color: green;
color: #fff;
}
<section>
<h1>max-content</h1>
<p>VHS occupy seitan, next level aesthetic chicharrones beard listicle tofu.</p>
<p>Readymade roof party put a bird on it organic hammock pour-over narwhal church-key 8-bit.</p>
</section>
<section>
<h1>min-content</h1>
<p>VHS occupy seitan, next level aesthetic chicharrones beard listicle tofu.</p>
<p>Readymade roof party put a bird on it organic hammock pour-over narwhal church-key 8-bit.</p>
</section>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment