개발자의 끄적끄적

[html/css] opacity 브라우저별 css 설정값 본문

개발/html & css

[html/css] opacity 브라우저별 css 설정값

효벨 2021. 1. 4. 03:00
728x90
반응형

[html/css] opacity 브라우저별 css 설정값

 

 

css 에서

 

opacity 속성을 추가하는 방법입니다!

.div {
    filter: alpha(opacity=50); // explorer
    -moz-opacity: 0.5;       // mozilla
    opacity: 0.5;           // firefox, safari, opera
}

 

위처럼 추가해놓고 사용하지만!

 

브라우저별로 내용이 다르니 적용하실때

 

꼭 검색해보시고 하세요!!

 

반응형
Comments