13 lines
217 B
CSS
13 lines
217 B
CSS
.item {
|
|
border: 1px solid black;
|
|
width: fit-content;
|
|
list-style: none;
|
|
padding: 5px;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.flex-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
} |