I cut a flowchart drawn in Photoshop into various "parts" that I want to "reassemble" onto a webpage. All of the "parts" have the same height but different widths. To fully reassemble the flowchart, I’d need 4 rows and each row would have anywhere from 4 to 5 images. I would like the "flowchart" to automatically scale with the window size.
How would I do about doing this in HTML/CSS?
2
Answers
use this
display:flex;flex-wrap:wrap;
You can use
responsive
images for them to scale with the windows size:width: 100%; max-width: 400px; height: auto;