Make rows of pictures expand to fit in available space











up vote
2
down vote

favorite












I am trying to create an image gallery with CSS, organized this way:



I load every image of a folder using PHP, and create elements I call rows containing the same number of pictures (4 in my case, aligned vertically). Those rows are aligned horizontally.
I would like those rows/columns to adjust their width until they occupy all the vertical space available so that if I have 4 vertical images, the row appears thinner, and if I have 4 landscape format images, the row is wider horizontally. See illustration:



Right now I just have something like this:



If there are too many rows, I just make a horizontal scrolling bar to the right.



My html code is the following:



<div class="gallery">
<div class="row">
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


And my CSS is the following:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
flex-direction: column;
height: 100%;
flex-wrap: nowrap;
align-content: stretch;
align-items: stretch;
justify-content: space-around;
}

.frame {
margin: 2px;
overflow: hidden;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


I don't know if flex-grow would be the solution here. I have read about properties to auto-fit or auto-fill, but I am not sure how or where to use this. I hope this has not been answered somewhere else but I could not manage to find a similar topic. The thing is I need to keep images ratio, not just to fill the empty space.



Thank you in advance for your help!










share|improve this question
























  • Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
    – Danny
    Nov 6 at 13:15










  • Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
    – Camille Fossier
    Nov 7 at 2:31















up vote
2
down vote

favorite












I am trying to create an image gallery with CSS, organized this way:



I load every image of a folder using PHP, and create elements I call rows containing the same number of pictures (4 in my case, aligned vertically). Those rows are aligned horizontally.
I would like those rows/columns to adjust their width until they occupy all the vertical space available so that if I have 4 vertical images, the row appears thinner, and if I have 4 landscape format images, the row is wider horizontally. See illustration:



Right now I just have something like this:



If there are too many rows, I just make a horizontal scrolling bar to the right.



My html code is the following:



<div class="gallery">
<div class="row">
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


And my CSS is the following:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
flex-direction: column;
height: 100%;
flex-wrap: nowrap;
align-content: stretch;
align-items: stretch;
justify-content: space-around;
}

.frame {
margin: 2px;
overflow: hidden;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


I don't know if flex-grow would be the solution here. I have read about properties to auto-fit or auto-fill, but I am not sure how or where to use this. I hope this has not been answered somewhere else but I could not manage to find a similar topic. The thing is I need to keep images ratio, not just to fill the empty space.



Thank you in advance for your help!










share|improve this question
























  • Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
    – Danny
    Nov 6 at 13:15










  • Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
    – Camille Fossier
    Nov 7 at 2:31













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I am trying to create an image gallery with CSS, organized this way:



I load every image of a folder using PHP, and create elements I call rows containing the same number of pictures (4 in my case, aligned vertically). Those rows are aligned horizontally.
I would like those rows/columns to adjust their width until they occupy all the vertical space available so that if I have 4 vertical images, the row appears thinner, and if I have 4 landscape format images, the row is wider horizontally. See illustration:



Right now I just have something like this:



If there are too many rows, I just make a horizontal scrolling bar to the right.



My html code is the following:



<div class="gallery">
<div class="row">
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


And my CSS is the following:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
flex-direction: column;
height: 100%;
flex-wrap: nowrap;
align-content: stretch;
align-items: stretch;
justify-content: space-around;
}

.frame {
margin: 2px;
overflow: hidden;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


I don't know if flex-grow would be the solution here. I have read about properties to auto-fit or auto-fill, but I am not sure how or where to use this. I hope this has not been answered somewhere else but I could not manage to find a similar topic. The thing is I need to keep images ratio, not just to fill the empty space.



Thank you in advance for your help!










share|improve this question















I am trying to create an image gallery with CSS, organized this way:



I load every image of a folder using PHP, and create elements I call rows containing the same number of pictures (4 in my case, aligned vertically). Those rows are aligned horizontally.
I would like those rows/columns to adjust their width until they occupy all the vertical space available so that if I have 4 vertical images, the row appears thinner, and if I have 4 landscape format images, the row is wider horizontally. See illustration:



Right now I just have something like this:



If there are too many rows, I just make a horizontal scrolling bar to the right.



My html code is the following:



<div class="gallery">
<div class="row">
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
<div class="frame">
<img class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


And my CSS is the following:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
flex-direction: column;
height: 100%;
flex-wrap: nowrap;
align-content: stretch;
align-items: stretch;
justify-content: space-around;
}

.frame {
margin: 2px;
overflow: hidden;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


I don't know if flex-grow would be the solution here. I have read about properties to auto-fit or auto-fill, but I am not sure how or where to use this. I hope this has not been answered somewhere else but I could not manage to find a similar topic. The thing is I need to keep images ratio, not just to fill the empty space.



Thank you in advance for your help!







html css flexbox alignment image-gallery






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 6 at 7:05









Barna Tekse

2,40272335




2,40272335










asked Nov 6 at 6:05









Camille Fossier

262




262












  • Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
    – Danny
    Nov 6 at 13:15










  • Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
    – Camille Fossier
    Nov 7 at 2:31


















  • Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
    – Danny
    Nov 6 at 13:15










  • Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
    – Camille Fossier
    Nov 7 at 2:31
















Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
– Danny
Nov 6 at 13:15




Just to clarify you want the images themselves to define widths of the rows and for the rows to take up 100% of the vertical space of the entire viewport?
– Danny
Nov 6 at 13:15












Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
– Camille Fossier
Nov 7 at 2:31




Exactly yes, I do not want to indicate fixed width, because I just generate rows with php and a folder containing my pictures so they could constantly change.
– Camille Fossier
Nov 7 at 2:31












2 Answers
2






active

oldest

votes

















up vote
1
down vote













You could use some Javascript to get the height of the images once they load and then calculate what fraction the of the viewport each .frame element should take up.



See the demo below with documenation in the comments:






window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>








share|improve this answer























  • I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
    – Camille Fossier
    Nov 11 at 8:40


















up vote
0
down vote













Please see the comments in the code.



html:



<head>
<meta name="viewport" content="width=device-width" height="device-height" user-scalable="yes" initial-scale="1.0"> <!-- added -->
</head>

<div class="gallery">
<div class="row rowone">
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
</div>
<div class="row rowtwo">
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


css:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
/* flex-direction: column; -- removed */
height: 100%;
/* flex-wrap: nowrap; -- removed */
align-content: stretch;
/* align-items: stretch; -- removed */
/* justify-content: space-around; -- removed */
flex-wrap:wrap; /* added */
height:auto; /* added */
}

/* added to work with narrowest image in each row */
.rowone {
width:388px;
}

.rowtwo {
width:340px;
}

/* end - added to work with narrowest image in row */

.frame {
margin: 2px;
overflow: hidden;
align-self:stretch; /* added - "align-self" works in ie */
flex:1 1 auto; /* added */
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
height:100%; /* added */
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


link: column grid full height - https://codepen.io/carolmckayau/pen/NEqzpO






share|improve this answer























  • flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
    – Carol McKay
    Nov 6 at 8:24










  • Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
    – Camille Fossier
    Nov 7 at 2:33











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53166540%2fmake-rows-of-pictures-expand-to-fit-in-available-space%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













You could use some Javascript to get the height of the images once they load and then calculate what fraction the of the viewport each .frame element should take up.



See the demo below with documenation in the comments:






window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>








share|improve this answer























  • I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
    – Camille Fossier
    Nov 11 at 8:40















up vote
1
down vote













You could use some Javascript to get the height of the images once they load and then calculate what fraction the of the viewport each .frame element should take up.



See the demo below with documenation in the comments:






window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>








share|improve this answer























  • I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
    – Camille Fossier
    Nov 11 at 8:40













up vote
1
down vote










up vote
1
down vote









You could use some Javascript to get the height of the images once they load and then calculate what fraction the of the viewport each .frame element should take up.



See the demo below with documenation in the comments:






window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>








share|improve this answer














You could use some Javascript to get the height of the images once they load and then calculate what fraction the of the viewport each .frame element should take up.



See the demo below with documenation in the comments:






window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>








window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>





window.addEventListener("load", () => {
const rows = document.querySelectorAll(".row");

for(let row of rows) {
const frames = row.querySelectorAll(".frame");
const imgs = row.querySelectorAll("img");

// calculate the sum of heights of all the img elements in a row
const totalHeight = Array.prototype.reduce.call(imgs, (a, img) => Number(img.naturalHeight) + a, 0);

// sets the height of each frame
for( let frame of frames) {
let imgOfFrame = frame.querySelector("img");
let fractionForFrame = imgOfFrame.naturalHeight / totalHeight * 100;


frame.style.height = fractionForFrame + "vh";
}
}
});

body {
margin: 0;
padding: 0;
}

.gallery {
display: flex;
overflow-x: scroll; /* make the the gallery scrollable*/
}

.row {
margin-right: 20px;
flex-shrink: 0; /* make sure the flex items do not shrink*/
}

.row:last-child {
margin-right: 0;
}

.frame {
box-sizing: border-box;
padding: 10px 0; /*creates vertical spacing between images*/
}

.frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /*keeps the image from being distorted if the aspect ratio is off*/
}

<div class="gallery">
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x50" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/200x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/400x800" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/200x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/300x100" alt=""></div>
</div>
<div class="row">
<div class="frame"><img src="https://via.placeholder.com/500x400" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x200" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x300" alt=""></div>
<div class="frame"><img src="https://via.placeholder.com/500x100" alt=""></div>
</div>

</div>






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 11 at 12:00

























answered Nov 10 at 20:19









Danny

825210




825210












  • I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
    – Camille Fossier
    Nov 11 at 8:40


















  • I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
    – Camille Fossier
    Nov 11 at 8:40
















I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
– Camille Fossier
Nov 11 at 8:40




I thought about this, but you know I'm lazy, and I try to understand flexbox capabilities haha, but I might do this if I do not find another solution! Thanks :)
– Camille Fossier
Nov 11 at 8:40












up vote
0
down vote













Please see the comments in the code.



html:



<head>
<meta name="viewport" content="width=device-width" height="device-height" user-scalable="yes" initial-scale="1.0"> <!-- added -->
</head>

<div class="gallery">
<div class="row rowone">
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
</div>
<div class="row rowtwo">
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


css:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
/* flex-direction: column; -- removed */
height: 100%;
/* flex-wrap: nowrap; -- removed */
align-content: stretch;
/* align-items: stretch; -- removed */
/* justify-content: space-around; -- removed */
flex-wrap:wrap; /* added */
height:auto; /* added */
}

/* added to work with narrowest image in each row */
.rowone {
width:388px;
}

.rowtwo {
width:340px;
}

/* end - added to work with narrowest image in row */

.frame {
margin: 2px;
overflow: hidden;
align-self:stretch; /* added - "align-self" works in ie */
flex:1 1 auto; /* added */
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
height:100%; /* added */
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


link: column grid full height - https://codepen.io/carolmckayau/pen/NEqzpO






share|improve this answer























  • flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
    – Carol McKay
    Nov 6 at 8:24










  • Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
    – Camille Fossier
    Nov 7 at 2:33















up vote
0
down vote













Please see the comments in the code.



html:



<head>
<meta name="viewport" content="width=device-width" height="device-height" user-scalable="yes" initial-scale="1.0"> <!-- added -->
</head>

<div class="gallery">
<div class="row rowone">
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
</div>
<div class="row rowtwo">
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


css:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
/* flex-direction: column; -- removed */
height: 100%;
/* flex-wrap: nowrap; -- removed */
align-content: stretch;
/* align-items: stretch; -- removed */
/* justify-content: space-around; -- removed */
flex-wrap:wrap; /* added */
height:auto; /* added */
}

/* added to work with narrowest image in each row */
.rowone {
width:388px;
}

.rowtwo {
width:340px;
}

/* end - added to work with narrowest image in row */

.frame {
margin: 2px;
overflow: hidden;
align-self:stretch; /* added - "align-self" works in ie */
flex:1 1 auto; /* added */
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
height:100%; /* added */
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


link: column grid full height - https://codepen.io/carolmckayau/pen/NEqzpO






share|improve this answer























  • flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
    – Carol McKay
    Nov 6 at 8:24










  • Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
    – Camille Fossier
    Nov 7 at 2:33













up vote
0
down vote










up vote
0
down vote









Please see the comments in the code.



html:



<head>
<meta name="viewport" content="width=device-width" height="device-height" user-scalable="yes" initial-scale="1.0"> <!-- added -->
</head>

<div class="gallery">
<div class="row rowone">
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
</div>
<div class="row rowtwo">
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


css:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
/* flex-direction: column; -- removed */
height: 100%;
/* flex-wrap: nowrap; -- removed */
align-content: stretch;
/* align-items: stretch; -- removed */
/* justify-content: space-around; -- removed */
flex-wrap:wrap; /* added */
height:auto; /* added */
}

/* added to work with narrowest image in each row */
.rowone {
width:388px;
}

.rowtwo {
width:340px;
}

/* end - added to work with narrowest image in row */

.frame {
margin: 2px;
overflow: hidden;
align-self:stretch; /* added - "align-self" works in ie */
flex:1 1 auto; /* added */
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
height:100%; /* added */
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


link: column grid full height - https://codepen.io/carolmckayau/pen/NEqzpO






share|improve this answer














Please see the comments in the code.



html:



<head>
<meta name="viewport" content="width=device-width" height="device-height" user-scalable="yes" initial-scale="1.0"> <!-- added -->
</head>

<div class="gallery">
<div class="row rowone">
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://photogrist.com/wp-content/uploads/2016/07/Brent-Purcell7.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVfBXwb6JoZeIoxlO7XOsYMj19qQMdiDV5HNQPRVlhyzEeocqVtAPYKtXkBrW_Gc9CYJw6Fhfk9MvSJryPAT1bJcyNuFMBWS24nFBvfP729z3ET4vEC1mcLYRHDu_G6gfeOQLUww-Va_Kd/s1600/great_depth_of_field_in_landscape_photo.jpg" class="gallery-img">
</div>
</div>
<div class="row rowtwo">
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/funny-carrot-series-450w-583823374.jpg" class="gallery-img">
</div>
<div class="frame">
<img src="https://image.shutterstock.com/image-photo/unusual-carrot-form-human-hand-450w-128098322.jpg" class="gallery-img">
</div>
</div>
<!-- other rows -->
</div>


css:



body {
background-color: #dddddd;
}

.gallery {
width: 100%;
overflow: auto;
height: 100%;
display: flex;
flex-wrap: nowrap;
}

.row {
display: flex;
/* flex-direction: column; -- removed */
height: 100%;
/* flex-wrap: nowrap; -- removed */
align-content: stretch;
/* align-items: stretch; -- removed */
/* justify-content: space-around; -- removed */
flex-wrap:wrap; /* added */
height:auto; /* added */
}

/* added to work with narrowest image in each row */
.rowone {
width:388px;
}

.rowtwo {
width:340px;
}

/* end - added to work with narrowest image in row */

.frame {
margin: 2px;
overflow: hidden;
align-self:stretch; /* added - "align-self" works in ie */
flex:1 1 auto; /* added */
display: flex;
align-items: center;
align-content: center;
justify-content: center;
box-shadow: inset 5px 5px 40px rgba(0,0,0,0.6);
-webkit-transition: box-shadow;
transition: all 0.5s ease;
}

.frame:hover {
box-shadow: inset 3px 3px 10px rgba(0,0,0,0.6);
}

.gallery-img {
-webkit-transition: transform;
transition: all 0.5s ease;
transform: scale(1);
position: relative;
z-index: -1;
height:100%; /* added */
}

.frame:hover .gallery-img {
transform: scale(1.1);
}


link: column grid full height - https://codepen.io/carolmckayau/pen/NEqzpO







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 6 at 8:23

























answered Nov 6 at 7:58









Carol McKay

1,9011711




1,9011711












  • flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
    – Carol McKay
    Nov 6 at 8:24










  • Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
    – Camille Fossier
    Nov 7 at 2:33


















  • flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
    – Carol McKay
    Nov 6 at 8:24










  • Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
    – Camille Fossier
    Nov 7 at 2:33
















flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
– Carol McKay
Nov 6 at 8:24




flex explained css-tricks.com/snippets/css/a-guide-to-flexbox
– Carol McKay
Nov 6 at 8:24












Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
– Camille Fossier
Nov 7 at 2:33




Either this doesn't solve my problem or there is something I do not understand. It seems that you indicate fixed widths for rows one and two. My rows are generated automatically so I don't know in advance the width for each one, I just want to have 4 pictures per rows, and having them to expand until the whole column reaches the bottom of the window.
– Camille Fossier
Nov 7 at 2:33


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53166540%2fmake-rows-of-pictures-expand-to-fit-in-available-space%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python