본문 바로가기
문제와 해결/css

부모에 상관없이 width 100% 주기

by 리양 2021. 11. 16.

width 100%적용할 자식 요소에게 아래의 속성 추가

 

    width: 100vw;
    margin-left: calc(-50vw + 50%);

 

https://skout90.github.io/2017/09/01/CSS/full-width-ignore-parent/

 

'문제와 해결 > css' 카테고리의 다른 글

nth-child,nth-of-type 과 display:none  (0) 2022.05.19
%와 vh,vw 차이(가로스크롤 문제)  (0) 2021.12.15
글씨에 그라디언트 넣기  (0) 2021.07.30
hover 삭제하기  (0) 2021.07.29
div 중앙정렬 방법  (0) 2021.07.21