'퍼블리싱'에 해당되는 글 2건

<body>
  <div id="parent">
    <div id="childRightCol">
      /*Content*/
    </div>
    <div id="childLeftCol">
      /*Content*/
    </div>
  </div>
</body>

 

$("#parent").css("overflow", "auto");

 

 

또는

 

$("#parent").css("display", "table");

$("#childRightCol").css("display", "table-row");

$("#childLeftCol").css("display", "table-row");

'퍼블리싱' 카테고리의 다른 글

IE 문서모드  (0) 2015.04.17
블로그 이미지

엘로드넷

,

IE 문서모드

퍼블리싱 2015. 4. 17. 20:31

제발 표준 좀 지키자..

 

1. 쿼크모드(Quirks Mode)

 

<meta http-equiv="X-UA-Compatible" content="IE=5" />

 

 

2. IE7 

 

<meta http-equiv="X-UA-Compatible" content="IE=7" />

 

 

3. IE8

 

<meta http-equiv="X-UA-Compatible" content="IE=8" />

 

 

4. 최신 IE

 

<meta http-equiv="X-UA-Compatible" content="IE=Edge" />

 

 

5. 크롬 Frame 적용

 

<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />

블로그 이미지

엘로드넷

,