带有 border-radius 和 box-shadow 的Html页面在我的本地计算机和ie9上正常工作 但是当我尝试从服务器(我和托管服务器)查看它时,阴影和角半径都消失了。
chrome和safari没有问题。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
div
{
border:0px solid #a1a1a1;
padding:10px 40px;
background:#2f3031;
width:900px;
height:1200px;
border-radius:8px;
-moz-border-radius:8px; /* Firefox 3.6 and earlier */
box-shadow: 8px 8px 5px #888888;
}
</style>
</head>
<body>
<div><div/>
</body>
</html>
感谢名单
答案 0 :(得分:1)
您的代码无效HTML5。
以<!DOCTYPE HTML>
启动它,使IE9从服务器以标准模式呈现:)