I’m trying Flexbox for the first time, and there is a mysterious box-shadow on the child items. I haven’t included any box shadows anywhere on the page.
I’m also having trouble with centering the container. Even when I set it to justify-center, it’s slightly off-center. Any ideas why these issues might be happening?
#container {
display: flex;
width: 100vh;
flex-direction: row;
justify-content: center;
list-style-type: none;
margin: auto;
margin-top: 50px;
gap: 5%;
}
li.ply {
font-size: 40px;
text-align: center;
font-weight: bold;
border-radius: 15px;
width: 1;
height: 1;
padding: 10%
}