When using the CSS overflow:scroll;
property, I noticed that there is a limitation on the scrolling depth. It seems that the scrollbar doesn't scroll far enough to reveal all the hidden data.
If you are interested in checking out the code on my Github portfolio, you can find it here.
let list = [{
technology: "Responsive Web Design",
projects: [{
prolink: "https://codepen.io/tznqeyiq/full/wvMxPOb",
paragraph: "Tribute page",
website: "freecodecamp.org",
},
...
// Project details continue here
...
];
// JavaScript logic for displaying projects from the 'list' array continues here...
// The above snippet showcases how the project information is displayed within the projects section. However, due to the limited scrolling capability with overflow:scroll, we encounter difficulties in accessing all projects. Is there a solution to enable infinite scrolling depth?
...
... More HTML and CSS code snippets follow
...