Languages/HTML||CSS
문제 있는 조상 엘리먼트 찾기 snippet
// Replace “.the-fixed-child” for a CSS selector // that matches the fixed-position element: const selector = '.the-fixed-child'; function findCulprits(elem) { if (!elem) { throw new Error( 'Could not find element with that selector' ); } let parent = elem.parentElement; while (parent) { const { transform, willChange, filter, } = getComputedStyle(parent); if ( transform !== 'none' || willChange ..
테이블이 꼼짝도 하지 않는다면 table-layout: fixed 를 조심하기
테이블 사이즈를 어떻게 바꿔도 (개발자도구에서 직접 바꿔봐도) 꼼짝도 하지 않는다면 table-layout: fixed; 로 설정한 부모나 조상이 없는지 확인할 것.............