CSS 아이콘: Google 포토
문제
해결책
동영상
먼저 이 로고의 구조를 만든 다음 해당 구조의 스타일을 지정합니다.
HTML
<div class="wrapper">
<div class="yellow"></div>
<div class="red"></div>
<div class="green"></div>
<div class="blue"></div>
</div>
CSS
.wrapper {
width: 200px;
aspect-ratio: 1;
display: grid;
grid-template-columns: 1fr 1fr;
}
.yellow, .blue {
width: 100%;
height: 55%;
}
.red, .green {
width: 55%;
height: 100%;
}
.yellow {
border-radius: 1in 1in 0 7px;
place-self: end;
background: #fbbc01;
}
.red {
border-radius: 7px 1in 1in 0;
background: #ea4132;
}
.green {
border-radius: 1in 0 7px 1in;
place-self: end;
background: #069e57;
}
.blue {
border-radius: 0 7px 1in 1in;
background: #4086f4;
}
코데펜
마무리
질문이 있으시면 아래에 의견을 남겨주십시오. 이것은 일련의 CSS 아이콘이므로 더 많은 기사를 보려면 팔로우하십시오. 당신이 이것을 좋아한다면 그것을 ❤️하는 것을 잊지 마십시오. 그리고 다음편에서 뵙겠습니다.
🌐 나와 연결:
Github
Newsletter
Website
Buy me a Coffee
Reference
이 문제에 관하여(CSS 아이콘: Google 포토), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/j471n/css-icon-google-photos-4iha텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)