Last active
July 5, 2019 14:57
-
-
Save tushartuteja/7baba948d67247ea69d08949b04e9287 to your computer and use it in GitHub Desktop.
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
| <!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