미디어 쿼리 (반응형 작성시) /* max-width:767px => 767이하 에서 실행 max-width:991px => 991이하 에서 실행 min-width:992px => 992이상 에서 실행 *이하 조건이 다수일때 (min-width: 768px) and (max-width: 991px) 이런형식이 아니면 적용이 안될 수 있음 모두 작성해 줘야 하는것이 아니라 768px이하에서 달라지는 것이 있을때 구분사용함 */ http://naradesign.net/wp/2012/05/30/1823/ [ Web 관련 ]/HTML, CSS 2019. 12. 20. 18:44
자바스크립트 배열 var arrNumber = new Array(); //배열선언 var arrNumber = new Array("a","b","c","d"); var arrNumber = [1,2,3,4]; https://coding-factory.tistory.com/194 [ Web 관련 ]/자바스크립트 2019. 11. 29. 10:56
부트스트랩 모달 내용 부분에 세로 스크롤 사용하기 /* Important part */ .modal-content{ overflow-y: initial !important } .modal-body{ height: 250px; overflow-y: auto; } [ Web 관련 ]/HTML, CSS 2019. 11. 20. 15:10
jquery datepicker + monthpicker 관련-->link rel="stylesheet" href="/static/assets/plugin/datepicker/1.12.1/jquery-ui.css">script src="/static/assets/plugin/datepicker/jquery-1.12.4.js">script>script src="/static/assets/plugin/datepicker/1.12.1/jquery-ui.js">script>script src="/static/assets/plugin/datepicker/jquery.mtz.monthpicker.js">script> input type="text" name="sdate" class="datepicker" readonly autocomplete='off' > inp.. [ Web 관련 ]/jQuery 2019. 10. 29. 17:43