As I was working on my portfolio website I have noticed that the overall responsiveness is fine but when I resize the height of the screen the first section which I set to a height of 100vh is completely off. In fact, the text sinks inside of the about me section.
@camperextraordinaire Hmm, maybe its just happening with my computer. I am also using Chrome. This issue occurs when I drag the window up and down to resize it. (Only when I change the height not also the width).
@camperextraordinaire@sorinr I have just tried it myself and the text still shifts inside of the following section. =(
I am really not sure what is causing this issue!
Maybe I’m not reproducing the same behavior as yours. Here is a forked pen with the css changed as above and it seems working as expected when you shrink the height of the window.
Thanks a lot, I was having a problem unrelated to this, but your answer helped me figure out mine. I had set all the elements on my page to be 100vh each, but some of them had to be resizable because they had collapsible content, the thing is that it wasn’t working quite right since the elements had height:100vh so it was messing up the layout. It works fine now that I’ve set it to min-height:100vh and height:100%.