Open FelicixAwe opened 10 months ago
Can you share your code using https://codesandbox.io/? I'll be able to help out once I see the code.
Can you share your code using https://codesandbox.io/? I'll be able to help out once I see the code.
You probably missed using <div className="app">
in the App component JSX.
this is a bug, looks terrible in chrome on windows
@dowdy I just made the CSS class .list ul overflow: hidden, be sure that your className in App.js is "app" all lowercase
There is a similar issue on the usepopcorn as well [image: image.png]
On Fri, 8 Mar 2024 at 15:45, arp690 @.***> wrote:
I just made the CSS class .list ul overflow: hidden, be sure that your className in App.js is "app" all lowercase
— Reply to this email directly, view it on GitHub https://github.com/jonasschmedtmann/ultimate-react-course/issues/44#issuecomment-1985819438, or unsubscribe https://github.com/notifications/unsubscribe-auth/BAUQGL262V4IE6M4V3FRHGTYXHFJLAVCNFSM6AAAAABBJKYJD6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBVHAYTSNBTHA . You are receiving this because you are subscribed to this thread.Message ID: @.*** com>
That is a scrollbar, I changed the container CSS style overflow: scroll;
to overflow: hidden;
and it works but I am not sure whether it will lose the ability to scroll the content. Also, I didn't use @5 when creating the React app, and I am also not sure whether that caused the issue. And I also found that only happened on some browsers, I believe there is some way to style the scrollbar to be transparent.
This className helped me to solve it.
For me, I needed to add the app class to the App component as stated above but also the overflow: hidden in the .list ul...
Hi, I'm following the tutorial on the Udemy. The css file gives me a large white space down there. Everything above the white space is html element. So I suspect
height: 100vh
doesn't work properly. But I'm not a css expert and cannot figure out how to fix it. I tried on Firefox but having the same issue.