I am a beginning web developer and I want to overlap two images completely on top of one another. I am developing an application that checks to see if an answer inputed into the application is correct or not. For each answer, I will either display a checkmark or an "X" mark for the correct/incorrect answers respectively. To do this, I will use CSS and JavaScript:CSS:\[code\]#checkmark { visibility: hidden}#xmark {visibility:visible}\[/code\]JavaScript:\[code\]function showCorrect(input, ans) { if (input == ans) { document.getElementById('checkmark').style.visibility=visible; }}\[/code\]To do this, I just want to make the checkmark visible so that it covers up the xmark completely. What is the simplest way to overlay the images completely one on top of the either so that the checkmark covers the "X" mark?