PHP에서 DOM Parser 사용하기
PHP에서 DOM Parser 사용하기 How to get HTML elements? // Create DOM from URL or file $html = file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) { echo $element->src . …
PHP에서 DOM Parser 사용하기 How to get HTML elements? // Create DOM from URL or file $html = file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) { echo $element->src . …
행정표준코드관리시스템에서 대학교 검색하기 대학교 검색 기관코드조회 기관유형선택 > 고등교육기관 Reference https://www.code.go.kr/jsp/index.jsp Post Tags: #검색, #고등교육기관, #대학교, #행정표준코드관리시스템
자바스크립트에서 브라우저 속성 지원 여부 확인하기 DOM Attribute placeholder attribute is supported if('placeholder' in document.createElement('input')){ … } download attribute is supported if(typeof document.createElement('a').download != "undefined"){ … } img srcset attribute …
CSS에서 placeholder 텍스트 컬러 바꾸기 Usage html <input type="text" placeholder="Hello World" /> css ::-webkit-input-placeholder { color: pink; } /* Chrome/Opera/Safari */ ::-moz-placeholder { color: pink; } /* Firefox 19+ */ …
인터넷익스플로러에서 허용된 스타일시트 최대 규칙 갯수 Description Outlines the maximum number of stylesheets and rules supported by Internet Explorer 6 to 9. Internet Explorer 6 to 9 A sheet may …
블링크 애니메이션 예제 HTML <blink>hello</blink> CSS .blink { -webkit-animation: w3-blink-animation 1.5s linear infinite; -moz-animation: w3-blink-animation 1.5s linear infinite; animation: w3-blink-animation 1.5s linear infinite; } @keyframes w3-blink-animation { 50% { background: …
IOS에서 하이라이트 컬러 제거하기 -webkit-tap-highlight-color: rgba(0,0,0,0);
경고창에서 한글이 깨질경우 <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=euc-kr' /> </head> <body> <script> window.alert('Hello World!\\n헬로우 월드!'); history.go(-1); </script> </body> </html>
뷰포트 예제 user-scalable=no 가 포함되어 있을경우 w3c validator 를 통과하지 못한다. 따라서 PC 와 MOBILE 의 뷰포트를 다르게 설정하는것이 좋다. Summary <!DOCTYPE html> <html lang="ko"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta …
자주 사용하는 A 태그 속성 tel: <a href="TEL:051-744-26333">051-744-26333</a> <a href="tel:+541147776464">+54 11 4777 6464</a> mailto: <a href="matilto:email@example.com">email@example.com</a>