Skip to content

Instantly share code, notes, and snippets.

@samanpwbb
Forked from tristen/index.html
Last active December 16, 2016 16:57
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 samanpwbb/de3a5c5ef45ccb6d86a310b9bc7be017 to your computer and use it in GitHub Desktop.
Save samanpwbb/de3a5c5ef45ccb6d86a310b9bc7be017 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
font: 16px sans-serif;
margin: 0;
padding: 0;
}
.parent {
display: inline-flex;
flex-direction: row;
}
.parent > div {
flex-shrink: 0;
width: 33.3333%;
background-color: red;
color: white;
padding: 0 10px;
}
.parent > .active { background-color: green; }
</style>
</head>
<body>
<div class='parent'>
<div><div>a</div></div>
<div><div class='active'>horse</div></div>
<div><div>pig</div></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment