css
IE6 png 투명처리
aneyh.c
2012. 2. 17. 12:10
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title> IE6 PNG 투명처리 </title>
<style type="text/css">
body {
background-color : #d2d2d2;
}
img {
behavior : url(iepngfix.htc);
}
*.sample {
behavior : url(iepngfix.htc);
background : url(sample.png);
width : 128px;
height : 128px;
text-align : center;
}
</style>
</head>
<body>
<h3>1. PNG 이미지 투명처리</h3>
<img src="sample.png" />
<h3>2. 배경으로 사용</h3>
<table border="1">
<tr>
<td class="sample">sample</td>
</tr>
</table>
</body>
</html>
sample.zip