我在样式表中给了div一些background-color
属性。
.suggest_page {
position: absolute; // it is gonna come on my button input
background-color: #ccffcc;
}
当按下按钮时,按钮出现。我不想要这个。我希望background-color
遍布所有地方。我该怎么办?
注意:我可以停用该按钮,但我不想这样做。
答案 0 :(得分:4)
将z-index
添加到您想要覆盖的html样式中,或者您可以执行相反的操作并将其添加到按钮中,例如
<强>风格强>
.suggest_page {
position: absolute; // it is gonna come on my button input
background-color: #ccffcc;
z-index:2; /*Has to be greater than what your button is */
}
或您的按钮
#Button {
z-index:-1; /* Has to be less than your suggest_page */
}