티스토리 뷰
[출처] http://www.queness.com/post/683/10-awful-ie-bugs-and-fixes
1. IE6 유령글 버그
Just before I wrote this article, I encountered this bug. It's so bizzare and hilarious. A piece of duplicated text came from nowhere and IE6 display it somewhere in the bottom near to the original text. I couldn't solve it, so I search for it, and BINGO, it's just another IE6 Bug.
There are quite a lot of solutions for it, but none of them work to me (I can't use some of the methods because of the complexity of the website.), so I used a really hacky method. Adding spaces next to the original text seems to solve the problem.
However, from a website called Hippy Tech Blog I found online. The reason behind it is due to the html comment tag. IE6 can't render it properly. The following is a list of solutions he suggested:
해결
- comment 주변에 <!—[IF !IE]> 태그 사용.
- comment 제거
- preceding float 안에 {display:inline;} 스타일 추가
- 사용하고있는 div들에 –ve margin 사용.
- 원본글에 여분의 (10 공백같은) 추가 (핵스런 방법)
2. Position Relative 와 Overflow Hidden
I faced this problem a lot of times when preparing a jQuery tutorial, because I used overflow hidden a lot to make the desired layout.
It happens when the parent element overflow set to hidden and the child element is set to position:relative.
CSS-Trick 이 버그는 눈으로 확인가능한 좋은 사례가 있다. IE 에서 position:relative 와 overflow
해결
- 상위 element 에 position relative 추가.
3. IE를 위한 Min-Height
간단하다, IE 는 min-height 속성을 무시하고 다음과 같은 핵을써서 고치는게 가능하다. Credit to Dustin Diaz
This solution works like a charm in IE6, Mozilla/Firefox/Gecko, Opera 7.x+, Safari1.2
해결
- selector {
- min-height:500px;
- height:auto !important;
- height:500px;
- }
4. 크기조정 이미지 뭉개짐
이것을 좋아하게 될것이다. IE에서 잘못된 이미지 크기조정이 괴롭히는가? IE와 다른 브라우저를 비교해본다면, IE의 이미지 크기조정은 다른 브라우저에 비해 허접하다.
해결
- img { -ms-interpolation-mode: bicubic; }
5. PNG 투명
I guess everyone knows this, but I'm going to put it here anyway just for future reference :)
So if you want to use transparent image and GIF doesn't give you the quality you want, you will need this hack for PNG. You have to be aware, if you use a PNG as background, you will not able to set the background position.
해결
- img {
- filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);
- }
6. IFrame 투명 배경
In firefox and safari you shouldn't encounter this problem because by default, the iframe background is set to transparent, but in IE, it doesn't. You need to use allowTransparency attribute and put the following CSS code to achieve that.
해결
- /* in the iframe element */
- <iframe src="content.html" allowTransparency="true">
- </iframe>
- /* in the iframe docuement, in this case content.html */
- body {
- background-color:transparent;
- }
7. IE 기본 수직 Scroll bar 막기
기본적으로, IE는 내용크기가 적절해도 수직 스크롤바를 보인다. overflow:auto 를 써서 필요할때만 볼 수 있다.
해결
- html {
- overflow: auto;
- }
8. :hover Pseudo Class
IE 에서만 지원되는 anchor element에 대한 :hover pseudo class. jQuery hover event 를 통해 같은 효과를 낼 수 있다.
해결
- /* jQuery Script */
- $('#list li').hover(
- function () {
- $(this).addClass('color');
- },
- function() {
- $(this).removeClass('color');
- }
- );
- /* CSS Style */
- .color {
- background-color:#f00;
- }
- /* HTML */
- <ul id="list">
- <li>Item 1</li>
- <li>Item 2</li>
- <li>Item 3</li>
- </ul>
9. Box Hack Model
This is the hottest bug in IE. The basic understanding is that IE calculates width differently. Based on w3c standard, total width of an element should be
- total width = margin-left + border-left + padding-left + width + padding-right + border-right + margin-right
However, Internet Explorer calculates it without adding paddings and borders:
- total width = margin-left + width + margin-right
- Use the w3c use standards compliant mode. IE6 or later will calculate the width based on w3c standard, however, you will still having problem for IE5
또는, 이 문제 해결을 위해 CSS Hack 을 쓸수 있다. IE5를 제외한 모든 표준 호환 브라우저들은 w\\dth:180px 를 읽을 수 있다.
- #content {
- padding:10px;
- border:1px solid;
- width:200px;
- w\\idth:180px;
- }
10. 2중 여백 버그수정
만약 왼쪽 또는 오른쪽 지정된 elements를 float 한다면, IE6 는 2배의 여백을 준다. 예를들어, margin-left:5px 이 10px 가 될수 있다. float된 element에 display:inline 을 추가하여 해결할 수 있다.
해결
- div#content {
- float:left;
- width:200px;
- margin-left:10px;
- /* fix the double margin error */
- display:inline;
- }
'웹프로그래밍' 카테고리의 다른 글
최고의 CAPTCHA 21가지 (0) | 2010.01.06 |
---|---|
모든 웹디자이너들이 가져야만 할 83가지 놀라운 Firefox Add-ons (0) | 2010.01.06 |
Cheat Sheets (0) | 2010.01.06 |
온라인 이미지 관련 API 제공 되는것들 (0) | 2009.12.31 |
URL Encoding Decoding Site (0) | 2009.03.26 |
- Total
- Today
- Yesterday
- Make Use Of
- How to geek
- 인터넷 통계정보 검색시스템
- 트위터 공유 정보모음
- 웹표준KR
- 치우의 컴맹탈출구
- Dev. Cheat Sheets
- w3schools
- Dev. 조각들
- ASP Ajax Library
- CSS Tricks
- WebResourcesDepot
- jQuery Selectors Tester
- DeveloperSnippets
- Smashing Magazine
- Nettuts+
- devListing
- 웹 리소스 사이트(한)
- Mobile tuts+
- Dream In Code
- Developer Tutorials
- CSS3 Previews
- 자북
- 안드로이드 사이드
- Code Visually
- Code School
- SQLer.com
- 무료 파워포인트 템플릿
- iconPot
- Free PowerPoint Templates
- Design Bombs
- Web Designer Wall
- 1st Webdesigner
- Vandelay Design
- 무료 벡터 이미지 사이트들
- Tripwire Magazine
- Web TrendSet
- WebMonkey
- 윤춘근 프리젠테이션 디자이너 블로그
- cz.cc 무료 DNS
- [웹하드] MediaFire
- [웹하드] DivShare
- 한컴 인터넷 오피스
- Mac
- PHP
- sencha touch
- iis
- iphone
- ASP
- CSS
- Prototype
- nginx
- 안드로이드
- laravel
- Linux
- Debug
- JQuery
- 한글
- IOS
- Wordpress
- Android
- javascript
- centos
- JSON
- Docker
- API
- 워드프레스
- git
- nodejs
- IE
- Chrome
- mssql
- classic asp
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |