IE와 파이어폭스에서는 링크를 해당링크 주변에 점선을 생성한다. 미관상 혹은 홈페이지 기획자의 요구에 따라 이 점선을 없에야 할 경우가 있다. 세 방법이 있다. 둘은 CSS, 셋째는 자바스크립트를 이용하는 방법이다. IE9, Firefox에서 작동 (CSS) a:active { outline: none; } IE6, IE7, IE8에서 작동 (CSS) a {selector-dummy: expression(this.hideFocus=true);} 모든 브라우저에서 작동 (자바스크립트) 1 2 3 4 function bluring(){…
링크 점선 없에기. While이 에 작성.
CSS 체크박스 가운데 정렬 노하우 While이 에 작성.
input type=checkbox 에서 vertical-align:-2px; 를 주면 세로정렬이 어느정도 된다. (굴림 9pt 기준) 이 체크박스 부분이 특히 브라우저마다 달라서 상당히 짜증나는 부분. 윙버스 가입약관 확인 페이지에서 발견. IE에서는 아직 테스트하지 못함
CSS <-> Javascript 속성 레퍼런스 While이 에 작성.
CSS Properties To JavaScript Reference Conversion CSS Property JavaScript Reference background background background-attachment backgroundAttachment background-color backgroundColor background-image backgroundImage background-position backgroundPosition background-repeat backgroundRepeat border border border-bottom borderBottom border-bottom-color borderBottomColor border-bottom-style borderBottomStyle border-bottom-width borderBottomWidth border-color borderColor border-left borderLeft border-left-color borderLeftColor border-left-style borderLeftStyle border-left-width borderLeftWidth border-right borderRight border-right-color borderRightColor border-right-style borderRightStyle border-right-width borderRightWidth border-style borderStyle border-top borderTop border-top-color…