Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
IE8 에서 input type="text" 컨트롤 안에서 글자가 위로 붙는 현상 수정. 본문
IE8 에서 input type="text" 컨트롤 안에서 글자가 위로 붙는 현상 수정.
<해결법>
height : 36px; //for other browsers
line-height: 36px; // for IE
css 를 위와 같이 2개를 다 주면 된다.
css 의 예:
input[type=text], input[type=password], input[type=number], input[type=email] {line-height:25px; height:25px; padding:0 5px; font-family:'맑은 고딕', dotum,'돋움',sans-serif; vertical-align:middle; border: 1px solid #a7a6aa; z-index:-999; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
'WEB (HTML, CSS)' 카테고리의 다른 글
d3 - Data-Driven Documents (0) | 2013.12.17 |
---|---|
IE 에서 투명 CSS style (0) | 2013.11.21 |
jQuery Multiple File Upload with Progress bar (1) | 2013.11.05 |
[css] 양쪽 정렬 버튼 (0) | 2013.10.17 |
How to specify the default error page in web.xml? (0) | 2013.10.07 |
Comments