Skip to content

Instantly share code, notes, and snippets.

@cjohansen
Last active September 24, 2020 11:23
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 cjohansen/f5ea46e384961af29204d5b4305c674d to your computer and use it in GitHub Desktop.
Save cjohansen/f5ea46e384961af29204d5b4305c674d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.container {
width: 500px;
height: 500px;
border: 1px solid red;
overflow: hidden;
}
.el {
width: 25%;
float: left;
}
</style>
</head>
<body>
<div class="container">
<div class="el" style="background: red"></div>
<div class="el" style="background: blue"></div>
<div class="el" style="background: yellow">
Hello
</div>
<div class="el" style="background: pink"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment