페이지내에 iframe있는경우 투명하게 처리하고자 하는경우가 있다
allowtransparency='true' 를 통해 투명하게 처리 할수 있다
이때 주의 해야될것이 <iframe src="아이프레임.html" allowtransparency='true'></iframe>
이렇게 만 하면되는것이아니다
아이프레임.html 페이지에서도 선언해줘야 하는 부분있데 아래의 css를 넣어줘야 정상적으로 적용된다
<style type='text/css'>
body{background-color:transparent;}
</style>