[CSS Battle - 10] 1-10. Cloaked Spirits

2023. 3. 20.·🎨 프론트엔드 공부/HTML & CSS

📍타겟 이미지

 

📍문제 풀이

각 원의 위치를 막대 끝(상단)에서 위로 절반 만큼 올리기 위해 position: relative 와 bottom 프로퍼티를 부여한다

- 이를 통해 원래 자기 자신의 위치에서 이동하게 할 수 있다

 

📍코드

<div class="container">
    <div class="sm col">
        <div class="circle outer brown">
            <div class="circle inner orange"></div>
        </div>
    </div>
    <div class="lg col">
        <div class="circle outer orange">
            <div class="circle inner brown"></div>
        </div>
    </div>
    <div class="sm col">
        <div class="circle outer brown">
            <div class="circle inner orange"></div>
        </div>
    </div>
</div>
<style>
	body {
		background: #62306D;
		margin: 0;
		display: flex;
		justify-content: center;
	}
	.container {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-end;
	}
	.col {
		width: 100px;
		background: #F7EC7D;
	}
	.sm {
		height: 100px;
	}
	.lg {
		height: 200px;
	}
	.circle {
		border-radius: 50%;
	}
	.orange {
		background: #E38F66;
	}
	.brown {
		background: #AA445F;
	}
	.outer {
		width: 100px;
		height: 100px;
		position: relative;
		bottom: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.inner {
		width: 60px;
		height: 60px;
	}
</style>

 

📍결과

100% match

 

'🎨 프론트엔드 공부/HTML & CSS' 카테고리의 다른 글
  • 반응형 헤더 구현하기
  • [CSS Battle - 11] 1-11. Eye of Sauron
  • scss variables
  • dialog element로 쉽게 modal 구현하기
지식물원
지식물원
지식이 자라는 식물원!
  • 지식물원
    지식물원
    지식물원
  • 전체
    오늘
    어제
    • 분류 전체보기 (516)
      • 🎨 프론트엔드 공부 (253)
        • JS & TS (92)
        • HTML & CSS (22)
        • React & Next (49)
        • Vue & Nuxt (22)
        • 기타 (68)
      • 🤓 기술 학습 & 공부 기록 (116)
        • Node.js (0)
        • Python (37)
        • 백엔드 (0)
        • 딥러닝 (1)
        • 컴퓨터 일반 (72)
        • 개발 인프라 (6)
      • 👨‍💻 프로젝트 경험 (6)
        • Work (0)
        • Toy (6)
      • ⚙️ 개발 팁 & 노하우 (21)
        • 프론트엔드 (6)
        • 기타 (15)
      • ☕️ 커리어 & 인터뷰 준비 (88)
        • 코딩 테스트 (88)
      • 📰 기술 트렌드 & 생각 정리 (4)
      • 📚 기타 (25)
        • 마케팅 (15)
        • 비개발서적 (10)
  • 블로그 메뉴

    • 태그
  • 링크

  • 공지사항

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

  • hELLO· Designed By정상우.v4.10.3
지식물원
[CSS Battle - 10] 1-10. Cloaked Spirits
상단으로

티스토리툴바