Comment aligner les éléments horizontalement dans CSS
.row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
}
.block {
width: 100px;
}
Stupid Sandpiper