css battle 250824

2025. 8. 24.·🎨 프론트엔드 공부/HTML & CSS

📌 사이트

https://cssbattle.dev/

 

📌이미지

구현

- 원 3개를 겹쳐서 상단, 하단 물결 무늬를 구현

- 양측 사이드 배경색과 같은 div를 absolute로 z-index 높여서 배치하여 brown 몸통 측면 가리기

 

코드

<main>
  <div class="columns left-column"></div>
  <div class="circle left-circle"></div>
  <div class="circle mid-circle">
    <div class="eye-box">
      <div class="eye"></div>
      <div class="eye"></div>
    </div>
    <div class="mouse"></div>
  </div>
  <div class="circle right-circle"></div>
  <div class="columns right-column"></div>
</main>
<style>
  body {
    background: #62E383;
    margin: 0;
  }
  main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .circle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #3B240C;
    border-radius: 50%
  }
  .left-circle {
    left: 40px;
  }
  .right-circle {
    right: 40px;
  }
  .columns {
    width: 100px;
    height: 300px;
    background: #62E383;
    z-index: 10;
    position: absolute;
  }
  .left-column {
    left: 0;
  }
  .right-column {
    right: 0;
  }
  .mid-circle {
    position: relative;
  }
  .eye-box {
    display: flex;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 20;
    top: 60px;
    gap: 40px;
  }
  .eye {
    width: 20px;
    height: 20px;
    background: #62E383;
    border-radius: 50%;
  }
  .mouse {
    width: 80px;
    height: 10px;
    background: #62E383;
    position: absolute;
    left: 50%;
    z-index: 20;
    top: 100px;
    transform: translateX(-50%);
  }
</style>
'🎨 프론트엔드 공부/HTML & CSS' 카테고리의 다른 글
  • CSS 텍스트에 그라데이션 적용하기
  • styled-components로 프로젝트를 시작할 때 참고할 만한 사례
  • 반응형 헤더 구현하기
  • [CSS Battle - 11] 1-11. Eye of Sauron
지식물원
지식물원
지식이 자라는 식물원!
  • 지식물원
    지식물원
    지식물원
  • 전체
    오늘
    어제
    • 분류 전체보기 (520)
      • 🎨 프론트엔드 공부 (245)
        • JS & TS (92)
        • HTML & CSS (23)
        • React & Next (51)
        • Vue & Nuxt (22)
        • 기타 (57)
      • 🤓 기술 학습 & 공부 기록 (116)
        • Node.js (0)
        • Python (37)
        • 백엔드 (0)
        • 딥러닝 (1)
        • 컴퓨터 일반 (72)
        • 개발 인프라 (6)
      • 👨‍💻 프로젝트 경험 (16)
        • Work (0)
        • Toy (16)
      • ⚙️ 개발 팁 & 노하우 (23)
        • 프론트엔드 (6)
        • 기타 (17)
      • ☕️ 커리어 & 인터뷰 준비 (88)
        • 코딩 테스트 (88)
      • 📰 기술 트렌드 & 생각 정리 (4)
      • 📚 기타 (25)
        • 마케팅 (15)
        • 비개발서적 (10)
  • 블로그 메뉴

    • 태그
  • 링크

  • 공지사항

    • 모바일 접속 시 코드 하이라이팅 깨질 때
  • 인기 글

  • hELLO· Designed By정상우.v4.10.3
지식물원
css battle 250824
상단으로

티스토리툴바