In a unique way, I have designed a page where the only way to navigate is by simply clicking.
To achieve this, I have implemented the following custom CSS:
body{
overflow:hidden;
}
However, I have encountered a problem where I am unable to scroll to a specific section of my page if the link is not visible. This requires that a certain part of the page should be scrollable.
In the sample fiddle provided, I am facing this issue with "Div3": Check it out here
Can anyone suggest how to make only the section displaying "Div3" scrollable and not affect the rest of the page?
UPDATE:
Applying overflow-y: scroll;
to "Div3" is not an option as it affects the entire width of the page. This causes the contents of "Div3" to shift, which is not the desired outcome.