I can’t figure out what I’m doing wrong. I’ve clicked “check my code” multiple times but no advice or help button is appearing.
Please post your actual code and a link to the challenge. Thanks
html {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
#piano {
background-color: #00471b;
width: 992px;
height: 290px;
margin: 80px auto;
padding: 90px 20px 0 20px;
position: relative;
border-radius: 10px;
}
.keys {
background-color: #040404;
width: 949px;
height: 180px;
padding-left: 2px;
}
.key {
background-color: #ffffff;
position: relative;
width: 41px;
height: 175px;
margin: 2px;
float: left;
border-radius: 0 0 3px 3px;
}
.key.black--key::after {
background-color: #1d1e22;
content: "";
position: absolute;
left: -18px;
width: 32px;
height: 100px;
border-radius: 0 0 3px 3px;
}
.logo {
width: 200px;
position: absolute;
top: 23px;
}
@media (max-width: 768px) {
kdj
}
- remove “kdj”
its works just fine on my side, perhaps consider disabling any “dark theme” extensions or try another browser
happy learning ![]()
Thanks.
I don’t have any extensions enabled so I switched to Microsoft Edge and it worked on there.
I forgot to remove the “kdj” when I copied my code, I added the "kdj "when I was trying to make the hint pop up because submitting the same code over and over again didn’t make it appear.
