IOS에서 폼 필드 초기화하기
IOS에서 폼 필드 초기화하기 텍스트 필드 input,textarea{background-clip:padding-box;-webkit-appearance:none;-webkit-border-radius: 0;} 라디오 버튼 input[type=radio]{border-radius:100%;}
IOS에서 폼 필드 초기화하기 텍스트 필드 input,textarea{background-clip:padding-box;-webkit-appearance:none;-webkit-border-radius: 0;} 라디오 버튼 input[type=radio]{border-radius:100%;}
IOS에서 Auto Tel 제거하기 <meta name="format-detection" content="telephone=no" />
텍스트 필드에서 x 버튼 제거하기 HTML <input type="search" /> <input type="text" /> CSS IE: ::-ms-clear { display: none; width : 0; height: 0; } ::-ms-reveal { display: none; width : …
화면 비율별 반응형 스타일 예제 Ratio 1:1 Aspect Ratio .responsive-ratio.ratio-1to1 { padding-top: 100%; } 16:9 Aspect Ratio .responsive-ratio.ratio-16to9 { padding-top: 56.25%; } 4:3 Aspect Ratio .responsive-ratio.ratio-4to3 { padding-top: 75%; } …
Responsive Stylesheet Screen Resolution We refer to the screen resolution statistics of the world. (http://gs.statcounter.com/) /* – Desktop || 1920px || wide – Desktop || 1680px || xlarge – Desktop …
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+ */ …
IOS에서 하이라이트 컬러 제거하기 -webkit-tap-highlight-color: rgba(0,0,0,0);
블링크 애니메이션 예제 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: …
인터넷익스플로러에서 허용된 스타일시트 최대 규칙 갯수 Description Outlines the maximum number of stylesheets and rules supported by Internet Explorer 6 to 9. Internet Explorer 6 to 9 A sheet may …
IOS에서 자동으로 폰트 크기를 조절하는 기능 끄기 html { -webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; }