크롬, Explorer10에서 문제 해결방법
1. 페이지 분리
기존 : <BR style='PAGE-BREAK-BEFORE: always;LINE-HEIGHT: 0; HEIGHT: 0px;'>
변경 : <div style='page-Break-Before: always'></div> <br style='height:0; line-height:0'>
2. 속성값 못 가져오는 문제
<input type='text' name='test' attr='attrValue' value='test'>
기존 : document.forms[0].test.attr
변경 : document.forms[0].test.getAttribute('attr')
3. 팝업이 탭으로 열리는 현상
기존 : toolbar = 1
변경 : toolbar = 0
4. 이미지 사이즈 안 맞는 문제
기존 : <button type="button" style="display:block; cursor:hand;background:; border:none; background-repeat:no-repeat; "></button>
변경 : style에 padding:0px; 추가
.'ETC' 카테고리의 다른 글
크롬 북마크 복원 방법 (3) | 2016.06.04 |
---|---|
이메일 테스트 방법 (0) | 2016.06.04 |
울트라에디트 설치 오류 (0) | 2016.06.04 |
윈도우 프로세스 강제 종료하기 (0) | 2016.06.04 |
티스토리 소스 코드 입력 방법 (1) | 2016.06.04 |