box-shadow
我在上班时遇到问题。我运行了一个非常简单的程序,它生成一个div
with box-shadow
,它显示使用 Firefox 和 IE10 正确运行 XAMPP,但是当使用 IIS6 时,firefox 可以工作,而 IE10 不能。
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:300px;
height:100px;
background-color:yellow;
box-shadow: 10px 10px 5px #888888;
}
</style>
</head>
<body>
<div>allo</div>
</body>
</html>