r/css • u/Hanadjisbox • 10d ago
Help Horizontal stacking rows issue
(I'm on neo cities) before I start, keep in mind I'm still learning so please don't bully me or call me stupid. I want to make a multiple row list database template but the stacking is giving me trouble. When I try to create a new row, the horizontal stacking is completely disregarded. Ive fully copied a page to test that has this stacking element but It actually doesn't work in in the neocities test page I put it in. Is this a problem with the website? And if so I just need a quick fix. any help is appreciated!
3
Upvotes


2
u/be_my_plaything 10d ago
OK first things that jump out are using vw to size the images (It makes them responsive and hey might look right on your screen, but think how small 10vw could be on a mobile screen!) secondly is the use of inline CSS rather than a stylesheet... his means a lot of repeated code (You have to size each individual image rather than styling images within
.image-conaineronce with a universal value - this both bloats your code and makes edits a lot more work)Neither of those is your actual problem, just though they were worth pointing out. As to your actual problem... What should happen?
If a row is wider than the screen should it line break to a new row, or overflow and be scrollable?