CSS

IOS에서 폼 필드 초기화하기

IOS에서 폼 필드 초기화하기 텍스트 필드 input,textarea{background-clip:padding-box;-webkit-appearance:none;-webkit-border-radius: 0;} 라디오 버튼 input[type=radio]{border-radius:100%;}

IOS에서 Auto Tel 제거하기

IOS에서 Auto Tel 제거하기 <meta name="format-detection" content="telephone=no" />

CSS에서 수직 중앙 정렬하기

CSS에서 수직 중앙 정렬하기 테이블 속성 이용한 방법 .valign-parent {display:table;width:100%;height:100%;} .valign-child {display:table-cell;vertical-align:middle;} 포지션 속성 이용한 방법 .valign-parent { position: relative; width:100px;height:100px; } .valign-child { width: 50%; height: 50%; position: absolute; …

CSS에서 수직 중앙 정렬하기 Read More »

Scroll to Top