CSS배틀 | #22 클라우드
이 짧은 기사에서는 CSSBattle - #22 Cloud 챌린지에 대한 솔루션을 살펴봅니다. 내 사고 과정과 구현 세부 사항에 대한 더 나은 통찰력을 얻으려면 아래 코드 조각을 참조하십시오.
도전:
해결책:
<div class="container">
<div class="left-circle circle bg-orange"></div>
<div class="bottom-rect bg-orange"></div>
<div class="right-circle circle bg-orange"></div>
</div>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.bg-orange {
background: #D86F45;
}
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
}
.container {
background: #F5D6B4;
width: 100vw;
height: 100vh;
position: relative;
}
.left-circle, .bottom-rect, .right-circle {
position: absolute;
left: 50%;
top: 50%;
}
.left-circle {
transform: translate(-100px, -35px);
}
.bottom-rect {
transform: translate(-75px, 15px);
width: 175px;
height: 50px;
border-top-left-radius: 50px;
border-top-right-radius: 50px;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
}
.right-circle {
transform: translate(-20px, -65px);
}
</style>
주요 내용:
- breaking down a complicated shape into smaller, easily reproducible chunks
- feel free to use position
absolute
to place elements relative to each other
언제나처럼 챌린지의 구현 세부 사항에 대한 피드백이나 질문을 환영합니다. 그렇지 않으면 이것이 도움이 되었기를 바랍니다!
Reference
이 문제에 관하여(CSS배틀 | #22 클라우드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/npranto/cssbattle-22-cloud-1536텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)