将以下代码插入到桌面上的基本 test.html 文件中。使用 google chrome、firefox 和 Internet Explorer 运行。
它无法在 IE 中运行!
我看不出这段代码为什么会出现故障。如果您知道原因,请尝试解决此问题。是否有一些与 ie 不兼容的 css 命令,或者我是否需要使用特定的代码来定位特定的浏览器......(我不喜欢这样做)。
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
background: #A3A3A3;
background-image: linear-gradient(180deg, #7D7D7D, #7D7D7D 80px, transparent 87px, transparent 140%);
background-repeat: no-repeat;
}
#maincontainer {
min-height: 100%;
width: 942px;
min-width: 600px;
margin: auto;
border: ridge;
border-color: #919191;
border-top: 0;
border-bottom: 0;
background: rgba(255,255,255,0.35);
padding-left: 16px;
padding-right: 16px;
}
</style>
</head>
<body>
<div id="maincontainer">
</div>
</body>
</html>