Skip to content

Instantly share code, notes, and snippets.

@benbai123
Created June 21, 2017 05:29
Show Gist options
  • Save benbai123/22eb9c85c2b6f4cb61ea37c109c703ff to your computer and use it in GitHub Desktop.
Save benbai123/22eb9c85c2b6f4cb61ea37c109c703ff to your computer and use it in GitHub Desktop.
floatTest
.float {float: left; width: 40%; background-color: green; margin: 10px;}
.inline-one {height: 50px;}
.inline-two {height: 100px;}
<head>
</head>
<body>
<div class="float">
<div class="inline-one"></div>
</div>
<div class="float">
<div class="inline-two"></div>
</div>
<div class="float">
<div class="inline-one"></div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment