运行下面的代码时发现使用CSS投影效果能影响整体的大小,以至于DIV中包含的input中鼠标位置也偏移了,请问哪位高手能帮忙看下?<!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>DIVͶӰcss3IE˾</title>
<style type="text/css">
.con2{
    
    
    width:200px;
    -moz-box-shadow:0 0 10px #000;
    -webkit-box-shadow:0 0 10px #000;
    box-shadow:0 0 10px #000;
    /*positionֹIE6<a>ʱ߿ƫ,ҺòΪ˶λ˾<a>ܵ*/
    position:relative; 
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=90, Color='#999999')  progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=270, Color='#999999');/*ɫҪд6λд#666*/
}
a{ display:block; height:150px;}
</style>
</head>
<body><div class="con2">
<input type="text" />
</div></body>
</html>