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.
|
|
|
/* CSS styles for my flexbox demo page */
|
|
|
|
|
|
|
|
.flex-container {
|
|
|
|
background: lightsteelblue;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
width: 400px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.flex-item {
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid midnightblue;
|
|
|
|
padding: 10px;
|
|
|
|
flex: 1 0 100px;
|
|
|
|
}
|