Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Created May 20, 2010 22:13
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 kwhinnery/408185 to your computer and use it in GitHub Desktop.
Save kwhinnery/408185 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
#products {
display: -webkit-box;
-webkit-box-orient: vertical;
}
#products p { height:33%; margin:0; }
</style>
</head>
<body>
<div id="products">
<p id="phones">First child</p>
<p id="computers">Second child</p>
<p id="fast-cars">Third child</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment