Overflow on my page
HI everyone
I realize this page I have an overflow I don t understand what is going wrong
https://codepen.io/alpha_66/pen/abPaKpq
THANKS by advance.
2 Replies
You're using
width: 100vw
on your .content
which is causing the horizontal scrollbar. Just remove it
Because img
elements display inline it ends up adding 4px
to the bottom, so make img
display: block;
Fork with the 2 changes https://codepen.io/z-/pen/mdaGjGW/344ce7dea0416d0e0f4dbe2c8e1d5329?editors=1100Thanks