ie 8 이하 ie7 에서 rgba 이외 스타일 투명 백그라운드 컬러 적용하는 방법 있나요?

1 답변

0 투표
ie8 doesn't support rgba
CSS background opacity with rgba not working in IE 8

여기를 참고하세요.
http://rland.me.uk/cross-browser-alpha-transparent-background-10-2011/

<style>
.div {
    background:rgb(0,0,0);
    background: transparent\9;
    background:rgba(0,0,0,0.8);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000,endColorstr=#cc000000);
    zoom: 1;
}
.div:nth-child(n) {
    filter: none;
}
</style>
add
...