게시판 내용의 줄 간격을 조정하는 방법이 있을지요...? 정보
게시판 내용의 줄 간격을 조정하는 방법이 있을지요...?본문
댓글 전체
http://pjcome.tistory.com/95
line-height로 조정 가능합니다. 위 링크처럼 해주셔도 되고 아래처럼 클레스로 해주셔도 되고.
<style type="text/css">
.contents {line-height: 150%;}
</style>
<td class="contents">
내용
<td>
line-height로 조정 가능합니다. 위 링크처럼 해주셔도 되고 아래처럼 클레스로 해주셔도 되고.
<style type="text/css">
.contents {line-height: 150%;}
</style>
<td class="contents">
내용
<td>
감사합니다.. 그런데 어느 파일에서 수정해야 하는지요..?;