0
我使用RGBA背景,但它不能在IE6中工作。我找到了一種在線排序的方法。CSS不透明背景IE6 - IE8
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中。在所有其他瀏覽器中工作正常。
我試過IE6了堅實的後備更好的生活,可惜這只是沒有工作 – PHP9274745382389
怎麼會這樣?發佈您的代碼。 – Adam