반응형 Developer/CSS10 모바일에서 사용자 select 방지 css body{ /* Prevent tablets from selecting text on taphold, etc: Note: If only the potential menu trigger elements should be protected, simply use the 'preventSelect: true' option. But we disable it more globally for tablet pc's, because the whole line or paragraph will still be selected otherwise. */ -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none.. 2017. 10. 20. float 초기화, clearfix /* Personal Reset */.clearfix{*zoom:1; }.clearfix:after{content: '';display: block;clear: both;} zoom 은 하위 브라우저 호환을 위한 거라고 한다. 2016. 11. 24. input 한글로 입력되게 처리 /* 한글로 시작 */ -webkit-ime-mode:active; -moz-ime-mode:active; -ms-ime-mode:active; ime-mode:active; 2016. 9. 22. box-sizing, IE와 크롬의 다른 해석 CSS 크롬과 IE 에서 보더인지 패딩인지 해석이 좀 달라서 IE 는 좀 위로 , 크롬은 좀 아래로 내려가는 현상이 있다. 아래가 그걸 보정 해 주는거 같다. * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } 2016. 7. 26. 이전 1 2 3 다음 반응형