[CSS] inherit

Narcoker·2023년 6월 1일
0

CSS

목록 보기
24/40

inherit

부모 요소의 같은 속성의 값을 상속받는다는 의미의 값이다.

color 속성의 경우 자손태그들에게 묵시적으로 상속한다.
단, a 태그의 경우 상속받지 못한다.

주로 img 태그에서 사용한다.
img 태그는 before과 after 를 사용하지 못하기 때문에
wrapper 로 한번 감싼다.

이때 wrapper의 width와 height를 img 태그에 상속한다.

.wrapper {
	width: 100px;
    height: 100px;
}

.wrapper img{
	width: inherit;
    height: inherit;
}
profile
열정, 끈기, 집념의 Frontend Developer

0개의 댓글