日期:2014-05-17 浏览次数:20867 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> .ceshi{ width:204px; height:204px; float:left; } .ceshi a{ width:200px; height:200px; display:block; border:2px #efefef solid; position:relative; z-index:10; } .ceshi a .box1{ width:200px; height:200px; overflow:hidden; background-color:#03C; } .ceshi a:hover{ border:none; } .ceshi a .box2{ display:none; } .ceshi a:hover .box2{ width:300px; height:300px; overflow:hidden; display:block; background-color:#bf0000; position:absolute; top:-50px; left:-50px; z-index:9999; } </style> </head> <body> <div class="ceshi"> <a href="#"> <div class="box1"></div> <div class="box2"></div> </a> </div> <div class="ceshi"> <a href="#"> <div class="box1"></div> <div class="box2"></div> </a> </div> </body> </html>