CSS배틀 | 27. 잠금

CSSBattle Challenges에 오신 것을 환영합니다!

이 짧은 기사에서는 CSSBattle - #27 Lock Up 챌린지에 대한 솔루션을 살펴봅니다. 내 사고 과정과 구현 세부 사항에 대한 더 나은 통찰력을 얻으려면 아래 코드 조각을 참조하십시오.


도전:






해결책:



<div class="container">
  <div class="red-circle"></div>
  <div class="yellow-circle-borders"></div>
</div>

<style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .container {
    background: #E38F66;
    width: 100vw;
    height: 100vh;
    position: relative;
  }
  .red-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #AA445F;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .yellow-circle-borders {
    border: 30px solid #F7EC7D;
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
  }
</style>



주요 내용:

  • using transparent border colors to hide the entirety of an element's shape


언제나처럼 챌린지의 구현 세부 사항에 대한 피드백이나 질문을 환영합니다. 그렇지 않으면 이것이 도움이 되었기를 바랍니다!

좋은 웹페이지 즐겨찾기