【发布时间】:2023-03-31 06:46:01
【问题描述】:
我使用的是 RGBA 背景,但它在 IE6 中不起作用。我找到了一种在线排序的方法。
table{
width: 100%;
border-radius: 20px;
border: 2px solid black;
padding: 10px;
text-align: center;
background: #87C4CF;
background: rgba(135, 196, 207, 0.7);
background:rgb(135,196,207);
background: transparent\9;
background:rgba(135,196,207,0.7);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#b287C4CF,endColorstr=#b287C4CF);
zoom: 1;
}
table:nth-child(n) {
filter: none;
}
这在 IE6 中有效,但现在表格在 IE 8 中不显示。在所有其他浏览器中都可以正常工作。
【问题讨论】:
标签: html css internet-explorer-8 background internet-explorer-6