html로 iframe 작성시 pc/모바일 사이즈 달리할 수 있나요?
본문
html로 iframe 소스 입력 할 때 pc와 모바일로 접속 시 사이즈를 달리하고 싶은데
방법 있나요??
답변 1
https://blog.theodo.fr/2018/01/responsive-iframes-css-trick/
참고하세요.
그누보드 함수를 이용해 구분해서 직접 입력하는 방법도 있습니다.
<?php if(is_mobile()){ ?>
<iframe src='' width='100' height='100'></iframe>
<?php }else{ ?>
<iframe src='' width='200' height='200'></iframe>
<?php }?>
답변을 작성하시기 전에 로그인 해주세요.