<!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 { | |
background-color: red; | |
color: white; | |
padding: 0 10px; | |
} | |
.parent > .active { background-color: green; } | |
</style> | |
</head> | |
<body> | |
<div class='parent'> | |
<div>a</div> | |
<div class='active'>horse</div> | |
<div>pig</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment