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
294 B

/* CSS styles for my flexbox demo page */
.flex-container {
background: lightsteelblue;
margin-bottom: 10px;
width: 500px;
display: flex;
/* flex-wrap: wrap; */
}
.flex-item {
box-sizing: border-box;
border: 1px solid midnightblue;
padding: 10px;
flex: 1 1 100px;
}