我需要在验证问题后将叠加图像放到单选按钮上。如果答案是正确的,则会出现单选按钮上方的勾号,如果出错则会出现错误答案中的十字和右侧的勾号。 所有这些都使用JS和HTML。
代码已经有效,我只需要放置图像。
有什么想法吗?谢谢!
答案 0 :(得分:0)
你需要使用z-index(css)和隐藏。你是什么代码?
img {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
<img src="http://www.ultracurioso.com.br/wp-content/uploads/2015/09/2110.jpg" width="200">
<p>the image has a z-index of -1, your button/html code has overlay</p>
</body>
</html>