Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- font-family: 'Roboto Mono', monospace;
- }
- h1 {
- margin: 20px;
- text-align: center;
- font-size: 18px;
- }
- .container {
- height: 300px;
- width: 600px;
- background-color: WhiteSmoke;
- display: flex;
- flex-wrap: wrap;
- margin: auto;
- }
- .left,
- .center,
- .right {
- height: 75px;
- width: 200px;
- margin: 2px;
- background-color: DodgerBlue;
- border: 2px solid lightgrey;
- }
- #flexstart {
- align-content: flex-start;
- }
- #flexend {
- align-content: flex-end;
- }
- #center {
- align-content: center;
- }
- #between {
- align-content: space-between;
- }
- #around {
- align-content: space-around;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement