왜 css`-webkit mask box image`가 넘침을 추가합니까: 부모에 숨긴 후에 사용하지 않습니까?
선형 흐림은 다음 CSS 속성에 적용됩니다.
.app-container {
position: relative;
background: url("https://res.cloudinary.com/dmwrugc6z/image/upload/v1639725427/wallhaven-lq1ezq_blo0mr.jpg");
background-size: cover;
border-radius: 24px;
margin: auto;
width: 328px;
height: 320px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
.blur-background {
height: 144px;
position: absolute;
left: 0;
right: 0;
border-bottom-left-radius: 24px;
border-bottom-right-radius: 24px;
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(20px);
-webkit-mask-box-image: linear-gradient(to top, black, black, transparent);
}
추가overflow:hidden;
-webkit-mask-box-image
속성이 적용되지 않은 후, 이런 이상한 행동은 무슨 원인이 있습니까?.app-container {
position: relative;
background: url("https://res.cloudinary.com/dmwrugc6z/image/upload/v1639725427/wallhaven-lq1ezq_blo0mr.jpg");
background-size: cover;
border-radius: 24px;
margin: auto;
width: 328px;
height: 320px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
overflow:hidden;
}
.blur-background {
height: 144px;
position: absolute;
left: 0;
right: 0;
border-bottom-left-radius: 24px;
border-bottom-right-radius: 24px;
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(20px);
-webkit-mask-box-image: linear-gradient(to top, black, black, transparent);
}
흐림은 다음 그림과 같은 마스크가 아닙니다당신은 여기서 원본 코드를 찾을 수 있습니다: https://codesandbox.io/s/linear-blur-issue-vdjw7?file=/src/styles.css
Reference
이 문제에 관하여(왜 css`-webkit mask box image`가 넘침을 추가합니까: 부모에 숨긴 후에 사용하지 않습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/venkatasrikanthkarri/why-css-webkit-mask-box-image-is-not-applying-after-adding-overflowhidden-to-its-parent-2i1c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)