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.
15 lines
273 B
15 lines
273 B
3 months ago
|
/* 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: 0 0 100px;
|
||
|
}
|