Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Last active July 5, 2019 14:57
Show Gist options
  • Select an option

  • Save tushartuteja/7baba948d67247ea69d08949b04e9287 to your computer and use it in GitHub Desktop.

Select an option

Save tushartuteja/7baba948d67247ea69d08949b04e9287 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="parent">
<div class="one">
</div>
<div class="two">
</div>
<div class="three">
</div>
</div>
</body>
<style>
body {
margin: 0px;
}
.parent {
display: flex;
background-color: yellow;
}
.one {
width: 50px;
background-color: red;
height: 100px;
}
.two {
width: 50px;
background-color: blue;
height: 100px;
}
.three {
width: 50px;
background-color: green;
height: 100px;
}
</style>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment