0
我正在學習HTML和CSS。我做了一個網站,我需要將媒體查詢放在一件事上,但它不起作用。這裏是我的代碼媒體查詢不起作用
<a class="boxmb" href="#section2"><img class="boxmb" id="boxmb" id="togglee"
style="position: fixed;left: 90%;padding-top:10%" src="images/box1.png"
id="image1"
onclick="showButton();diffImage(this);showSurpriseImage();PlaySound();" ></a>
CSS
@media screen and (max-width: 1100px) {
#boxmb {
position: fixed;
left: 60%;
padding-top:1%;
z-index: 999;
}
}
這裏是我的地盤 http://rickandmorty.8u.cz/index.html
一個元素只能有一個ID,和你的類boxmb的IMG擁有3我想你的意思是有那些是類來代替。 – Eqomatic
是的,我已經修復了它,它在我的樣式表中,但它不工作 –