Skip to content

Instantly share code, notes, and snippets.

@AljanScholtens
Created February 12, 2016 13:56
Show Gist options
  • Save AljanScholtens/ea5ac32008bf41624c2f to your computer and use it in GitHub Desktop.
Save AljanScholtens/ea5ac32008bf41624c2f to your computer and use it in GitHub Desktop.
<div class="l-container">
<div class="l-8">
<ul class="o-list">
<li class="o-list__item">Tekst</li>
</ul>
</div>
<div class="l-4">
<ul class="o-list">
<li class="o-list__item">Tekst</li>
</ul>
</div>
</div>
CSS:
.l-container {
has a clearfix of course
}
.l-4 {
float: left;
width: 33%;
}
.l-8 {
float: left;
width: 66%;
}
.o-list:container(width >= 600px) {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment