본문 바로가기

HTML 태그 & CSS 속성19

모바일에서 1px가량 여백이 생기는 버그 해결 가능방법 1. padding: 0; margin: 0; 2. overflow-x: hidden 또는 overflow-y: hidden; 2021. 12. 13.
[jQuery] CSS 프로퍼티 삭제 programmer-seva.tistory.com/61 [스터디_자바스크립트] 48. DOM 심화 - CSS 스타일시트와 CSS 규칙 1. CSS 스타일시트 개요 스타일시트는 외부 스타일시트를 포함하도록 HTMLLinkElement 노드를 사용하거나(예: ) 인라인 스타일시트를 정의하도록 HTMLStyleElement 노드(예: )를 사용하여 추가한다. 1 2 3 4 5 programmer-seva.tistory.com 안녕하세요 출처: https://mylife365.tistory.com/110 [변화에 적응하기] 2021. 4. 27.
jQuery ready와 load의 차이 2021. 4. 19.
[meta 메타태그] 모바일 기기에서 화면이 확대/축소되지 않도록 설정하기 www.thewordcracker.com/basic/disable-pinch-to-zoom-in-wordpress/. 요즘 나오는 대부분의 워드프레스는 반응형(Responsive)으로 나오기 때문에 모바일 기기에서는 자동으로 모바일 버전이 표시됩니다. 모바일 버전에서 손가락을 벌리거나 오므리면 화면이 확대/축소되지 않도록 설정하려면 다음 코드를 header.php 파일에 추가하도록 합니다.  인터넷 익스플로러(IE) 10 버전에서 제대로 작동하지 않는 경우 -ms-content-zooming: none | zoom 구문을 사용합니다html { -ms-content-zooming: none; -ms-touch-action: pan-x pan-y; } 2021. 1. 28.
nth-child( ) 2020. 12. 15.
CSS의 신기한 선택자 모음들 developer.mozilla.org/ko/docs/Web/CSS/Attribute_selectors a { color: blue; } /* Internal links, beginning with "#" */ a[href^="#"] { background-color: gold; } /* Links with "example" anywhere in the URL */ a[href*="example"] { background-color: silver; } /* Links with "insensitive" anywhere in the URL, regardless of capitalization */ a[href*="insensitive" i] { color: cyan; } /* Links with "cAsE".. 2020. 12. 7.