Grid Layout Not functioning responsively
I'm completely lost on how to make this fit in my at all times
I've tried setting a min and max height but i don't think i understand them well enough so i couldn't get it to work
i've tried changin the main message container to 90% and still doesn't look the part
5 Replies
friendly reminder, its more likely one of the coding geniuses that float around here will be inclined to help if you post the relevant code into a https://codepen.io . you can use placeholder images from something like https://unsplash.com or https://picsum.photos
CodePen
An online code editor, learning environment, and community for front-end web development using HTML, CSS and JavaScript code snippets, projects, and web applications.
Beautiful Free Images & Pictures | Unsplash
Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.
ahh i see will do
https://codepen.io/jotaro-kujo-the-builder/pen/abxxdpa
you are trying to fit everything in 90vh. but if the screen gets more narrow, the text will wrap and forces the height to grow. Because you have set a fixed height on the container (90vh) it has no room for it and will overflow. So, remove the height or make it a min-height so it is able to grow along with the content
ohhh yep that does seem to work,
doing that does break the rest of my layout because i've made a complete mess but that helps me with the grid layout
thank you for your help!