화면을 로드할 때 class="board_view"의 tbody > tr > td 안의 width와 height를 지우고, img 파일에 특정 사이즈를 부여한다. 1234567window.onload = function(){ //화면 넘어가는 table 크기 조정 $(".board_view tbody tr td").removeAttr("width"); $(".board_view tbody tr td").removeAttr("height"); $(".board_view tbody tr td div img").css("width", "100%"); $(".board_view tbody tr td div img").css("height", "auto");}Colored by Color Scriptercs