Tip: you can modify some code before running
<html> <head> <title>CSS-implemented mouse click on a small image without refreshing the enlarged image code</title> <style> body{font-size:11px; font-family:Verdana, Arial, Helvetica, sans-serif;} a{color:#000; text-decoration:none;} .img{border:0px;} .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); } .white_content { display: none; position: absolute; top: 15%; left: 25%; width: 535px; height: 420px; border: 16px solid #FFF; border-bottom:none; background-color: white; z-index:1002; overflow: auto; } </style> </head><body> <p></p> <div id="light" class="white_content">Close</div> <div id="fade" class="black_overlay"></div></body></html><br /></td> </tr></table>
Tip: you can modify some code before running