Files
webtech/ora11/cards/cards-flex.css
2025-11-28 16:57:23 +01:00

26 lines
302 B
CSS

@import "cards.css";
body{
margin: 0;
}
.cards{
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin: 1rem;
}
.card{
display: flex;
justify-content: space-between;
align-items: center;
}
.topleft{
align-self: flex-start;
}
.bottomright{
align-self: flex-end;
}