I'm currently working on creating an Asp.net website with a unique single-page portfolio style for the homepage. Each project or section should be 100% height of the viewport, stacked underneath each other to make use of anchor tags. However, I'm encountering issues with my CSS when using the <div>
tag and it's causing some functionality problems. How can I resolve this issue?
I've attempted the following:
/* in CSS*/
html, body{
height:100%;
width:100%;
}
I've also added the height=100% attribute to all parent <div>
elements related to the sections intended to be 100% height, but unfortunately, I still haven't been successful. I feel like I've tried everything possible and am feeling stuck at this point! Unfortunately, I can't share the full code as it's too lengthy and I'm on a different computer from where the code is located.