Html – Smooth scroll transition between child and parent
<html> <style> .App { font-family: sans-serif; text-align: center; .child { padding-left: 100px; padding-right: 100px; height: 100vh; overflow-y: scroll; } .child::-webkit-scrollbar { display: none; } } </style> <body> <div class="App"> <div class="parent"> <div class="child"> <p> Lorem ipsum dolor sit amet, consectetur…