더 나은 프로그래머가 되자

아이프레임 배경 투명처리 본문

레이아웃/HTML

아이프레임 배경 투명처리

greathuman 2014. 11. 20. 10:49

<html>
<head>
<title></title>
</head>
<body>
<iframe src="iframe.html" name="name" width=400 height=100 frameborder=0 scrolling=no allowtransparency="true"></iframe>
 
</body>
</html>
 
 
 
iframe.html
<html>
<head>
<title></title>
</head>
<body style="background:transparent" >
아이프레임 배경 투명
</body>
</html>

Comments