Created
January 12, 2017 20:12
-
-
Save versine/a9f827d1596a9b40351ba9e5e7f3af70 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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| <style> | |
| .thirty { | |
| width: 30%; | |
| min-width: 150px; | |
| min-height: 150px; | |
| border: 1px solid black; | |
| margin: 1% | |
| } | |
| .container { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content:space-around; | |
| background-color: #aaffff; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| <div class="thirty"> | |
| This is content | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment