게시판을 아이프레임으로 가져왔습니다. 그런데 영역이 이상하게 나오네요
본문
위 사진처럼 영역이 저렇게 잡히는데 고수님들 저거 자동으로 되는방법을 좀 알려주세요
아이프레임 소스는
<iframe id="ifrm" width="100%" height="auto" frameborder="0" marginwidth="0" scrolling="no" src="주소"></iframe>
이렇게 가져왔습니다.
css는
#gnbod_gallry{
width:1100px;
height:auto;
margin:0 auto;
text-align:center;
padding:100px 0 100px 0;
}
ㅠㅠ
답변 1
<div class="tbl_head01 tbl_wrap">
<table >
<caption><?php echo $g5['title']; ?> 목록</caption>
<thead>
</thead>
<tbody>
<tr>
<td style="border: 0px; padding: 0px 20px;">
<iframe src="/bbs/board.php?bo_table=banner&pim=1" style="width:100%" id="bframe"
frameborder="0" framespacing="0" scrolling="no" height="1" onLoad="iframeAutoResize(this);"></iframe>
</td>
</tr>
</tbody>
</table>
</div>
<script>
function iframeAutoResize(h){
if(h == null){ return false; }
(h).height = "0px";
var iframeHeight= (h).contentWindow.document.body.scrollHeight;
(h).height=iframeHeight + 15;
}
<script>
참고 하세요.
!-->
답변을 작성하시기 전에 로그인 해주세요.