You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
294 B
18 lines
294 B
3 months ago
|
/* CSS styles for my flexbox demo page */
|
||
|
|
||
|
.flexbox {
|
||
|
height: 900px;
|
||
|
background: yellow;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.greenbox {
|
||
|
flex: 0 0 400px;
|
||
|
align-items: center;
|
||
|
background: lime;
|
||
|
height: 400px;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|