Spaces:
Sleeping
Sleeping
File size: 285 Bytes
4f48282 |
1 2 3 4 5 6 7 8 9 10 11 |
.row-class {
display: flex;
align-items: stretch; /* Ensures all children have the same height */
}
.row-class > * {
flex: 1;
}
.output-image img {
width: 2500px; /* Force image to fill container width */
object-fit: cover; /* ACTIVATE FOR IMAGE-FIT CONTAINER */
} |