[Css] (3) 썸네일형 리스트형 [css] css작성법 webclub.tistory.com/361 효율적인 CSS 작성 방법 효율적인 CSS 작성하기 이 글은 CSS 코드를 최적화하는 방법을 제공합니다. 특히, 선택자를 효율적으로 작성하는 방법에 대해 집중적으로 다룹니다. CSS 명세는 브라우저가 어떻게 스타일 시스템 webclub.tistory.com [css] 모든 버튼 비활성화 & 활성화 모든 버튼 비활성화 $('input, button, a').css("pointer-events", "none"); $('input, button, a').css("cursor", "default"); 모든 버튼 활성화 $('input, button, a').css("pointer-events", "auto"); $('input, button, a').css("cursor", "auto"); [css] div 안에 div 이미지 가운데 정렬 1234567891011121314151617181920212223242526272829303132333435363738 #loading { width: 100%; height: 100%; position: fixed; display: table; opacity: 0.7; background-color: #fff; z-index: 99; } #loding_inner { display: table-cell; text-align: center; vertical-align: middle;} #loading-image { display: inline-block; z-index: 100; width: 50%; } $(document).ready(function(){ $('#loading').show(); }); .. 이전 1 다음