이럴경우 해당 링크 즉 png 배경위에 링크 부분에 position:relative; 를 주시면 해결됩니다.
(이미지가 겹치는 부분만 링크가 안먹힙니다.)
ex)
css 소스
* html #png {background:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img.png',sizingMethod='crop'); }
<div id="#png"><a href="http://www.webmini.net" style="position:relative;" >웹미니 바로가기</a>
위와 같이 a 태그 안에 style에 position:relative; 를 추가해주시면 됩니다.
물론 class 로 불러와도 되며, 아래와 같이 해당 id 값 a 링크부분에 정의를 해주셔도 됩니다.
#png a {position:relative;}
해당 png 안에 있는 모든 a 태그는 전부 적용이 되는 형식입니다.
익스6이 사라지는 그날까지...