Ie6

  • Published on
    오늘 또 열씨미 CSS를 만지다가 이런 경우가 발생했다...항상 FireFox 기준으로 디버깅을 하기때문에.. FireFox에서는 잘 나오는데... IE6 에서 특정 CSS 한줄이 제대로 안나오는 것이다..ㅎㅎTAB 브라이징 을 위한 탭을 만들고 있는중인데...#tab{ float: left; display:inline; width: 70%; margin-left: 1%; padding: 0 0 20px 0px; height: 0px;}바로 저 패딩부분에서 문제가 생겼다.. float Layout 이기때문에 항상 문제가 생기는거 같다..--여튼 저 한줄 패딩부분을 !important; padding: 0 0 0px 0px; !important 를 주면,.. 즉,..#tab{ float: left; display:inline; width: 70%; margin-left: 1%; padding: 0 0 20px 0px !important; padding: 0 0 0px 0px; heig
  • Published on
    일단 해결책 부터 쉽게 말하자면 버그 나는 부분에 display: inline; 요한줄만 써주면된다..문제의 발단은 float 를 IE가 제대로 뿌려주지 못하기 때문인거 같다.. 자세한 내용은 아래 영문 참조..그냥 링크를 달려고 했으나.. 내가 자주 볼꺼 같아서 긁어왔다.. ㅋㅋㅋIE6 버그에 대한 주요 타이틀 The IE Doubled Float-Margin Bug Return to Explorer Exposed Next IE demo What Goes Wrong A coder innocently places a left float into a container box, and uses a left margin on the float to push it away from the left side of the container. Seems pretty simple, right? Well it is until it's viewed in Explorer for Windows. In t