I have 9 pictures that I want to display on screen so they take maximum space and I don't have scrollbars. I want to display them in 3*3 matrix. I don't know what the size will be, but all 9 will be the same size.
How do I do this?
|
I have 9 pictures that I want to display on screen so they take maximum space and I don't have scrollbars. I want to display them in 3*3 matrix. I don't know what the size will be, but all 9 will be the same size. How do I do this? |
|||
| show 4 more comments |
|
I made a jsFiddle and decided to put it as an answer anyway. Set the body and html to
And have 9 divs with background images floated left, with 33.3333% width and height.
And that's all there is to it! |
|||||||
|
background-size: cover;to maintain aspect ratios. – Christian Varga Jan 29 at 17:04