왼쪽 광고칸
| | | | | |
728x90

티스토리 스킨을 제작 하다보면 가로와 세로 크기를 확인할 필요가 있음.

다음과 같은 스크립트로 확인이 가능함.

<div style="text-align:center; margin: 10px auto;"> <!-- 본문 사이즈(가로*세로) 확인 스크립트 시작 -->
	<script> 
			const elem = document.getElementById("wrapper");
			document.write("현재 화면 크기 : ");
			document.write(elem.clientWidth);
			document.write("*");
			document.write(elem.clientHeight);
	</script>
</div> <!-- 본문 사이즈(가로*세로) 확인 스크립트 끝 -->




오른쪽 광고칸