ПОПРОБУЙ
Меняй любую настройку — превью и CSS обновляются мгновенно.
flexbox
Привет
мир
как
дела
.container {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
}css grid
1
2
3
4
5
6
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
justify-items: stretch;
align-items: stretch;
}easing curves
.ball {
transition: transform 1200ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
}