CSSBattle 1.7: Leafy Trail Solution
Center, translateApproach
Center position
1.center {2 position: absolute;3 top: 50%;4 left: 50%;5 transform: translate(-50%, -50%);6}
Rest styling with explicit width, height, background color and border radius
Implementation
1<div class="leaf leaf-1"></div>2<div class="leaf leaf-2"></div>3<div class="leaf leaf-3"></div>4<style>5 body {6 background: #0b2429;7 }8 .leaf {9 position: absolute;10 top: 50%;11 left: 50%;12 width: 150px;13 height: 150px;14 border-radius: 67% 0;15 }16 .leaf-1 {17 background: #1a4341;18 transform: translate(-125px, -50%);19 }20 .leaf-2 {21 background: #998235;22 transform: translate(-50%, -50%);23 }24 .leaf-3 {25 background: #f3ac3c;26 transform: translate(-25px, -50%);27 }28</style>
Comments
Loading comments...
Tags
cssbattle
css
Apply and earn a $2,500 bonus once you're hired on your first job!
Clients from the Fortune 500 to Silicon Valley startups
Choose your own rate, get paid on time
From hourly, part-time, to full-time positions
Flexible remote working environment
A lot of open JavaScript jobs!!
Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.
Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.
Next Post
CSSBattle 1.9: Tesseract
Stack, rotate
Previous Post
CSSBattle 1.8: Forking Crazy
Position, translate