我无法确定需要对此页面进行哪些更改才能在 Internet Explorer 中正确显示。我已经尝试了通常的修复:定义浏览器标准,添加一个清除 div,添加一个高度,使用“背景”而不是“背景颜色”,但没有任何改变。背景保持透明。
我需要#main
div 背景是白色的。不那么重要,但也需要,我不确定为什么也不显示边框半径。
您必须登录才能查看网站的一部分,但这也有问题。我正在使用 css 渐变,并且我认为我正在使用跨浏览器显示所需的所有选项,但按钮没有背景渐变。这就是我用于渐变的内容:
background: linear-gradient(bottom, rgb(0,0,0) 0%, rgb(102,51,102) 100%);
background: -o-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(102,51,102) 100%);
background: -moz-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(102,51,102) 100%);
background: -webkit-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(102,51,102) 100%);
background: -ms-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(102,51,102) 100%);
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(0,0,0)), color-stop(1, rgb(102,51,102)));
这也不是立即成为问题,因为我有备用背景颜色,但奇怪的是,这些按钮上的边框半径工作正常。
我没有任何其他 IE 问题,但如果您看到任何其他问题,我是开放的。