Created
June 21, 2017 05:29
-
-
Save benbai123/22eb9c85c2b6f4cb61ea37c109c703ff to your computer and use it in GitHub Desktop.
floatTest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.float {float: left; width: 40%; background-color: green; margin: 10px;} | |
.inline-one {height: 50px;} | |
.inline-two {height: 100px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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