본문 바로가기

퍼블리싱/HTML | CSS | Javascript

투명도 설정 크로스브라우징

 

 

 

HTML

 

 

1
2
<div class="transparent"><p>안녕하세요 :D</p></div>
 
cs

 

 

CSS

 

1
2
3
4
5
6
7
8
9
10
11
12
13
.transparent{
  width: 100%;
  max-width: 368px;
  height: 261px;
  margin: 0 auto;
}
.transparent img{
  background: #f2f2f2;
    filter: alpha(opacity=50); /* internet explorer */
    -khtml-opacity: 0.5;      /* khtml, old safari */
    -moz-opacity: 0.5;       /* mozilla, netscape */
    opacity: 0.5;           /* fx, safari, opera */
}
cs

 

728x90