Reputation: 11
I am building building my first Webpage and the width is twice as big as the content in it, I can't find the reason. Here is a link to the codepen, I would really appreciate help, as this got me stuck now for a week. Thank you.
The link: https://codepen.io/emryyk60/pen/BaLyWXr
<a href="https://codepen.io/emryyk60/pen/BaLyWXr?editors=1100" target="_blank">
Upvotes: 0
Views: 108
Reputation: 776
You have a lot of syntax errors, but for a quick fix, adjust the following code:
body{
display: flex;
justify-content: center;
font-family: 'Neutra', sans-serif; }
body {
display: flex;
justify-content: center;
font-family: 'Neutra', sans-serif;
overflow-x: hidden;
}
Upvotes: 1