DEV Community

Cover image for CSS Battle Daily Target
shubham sutar
shubham sutar

Posted on

CSS Battle Daily Target

CSS Battle Daily Target 02 January 2024 Solution.

Hello, friends, today we will be solving the CSS Battle Daily Target through this blog. If you have just known about CSS Battle from the previous blog post, then with this and all future posts, you will be participating in a challenge every day. Let’s start with today’s new challenge. CSS Battle Daily Target for January 02, 2024 — Solution.

CSS Battle Daily Target 01 January 2024

Today’s CSS Battle Daily Target for January 02, 2024 is quite simple. In this, we have used CSS properties such as background, width, height, margin, -webkit-box-reflect, border-radius. The code for this is provided below:

<p><p a>
<style>
  *{
    background:#645E00;
  }
  body{
    width: 120px;
    height: 120px;
    background: #FFF579;
    margin:90 140;
    border-radius:20px
  }
  p{
    height:20;
    width:60;
    background:#FFF579;
    position: fixed;
    margin:-40 30;
    border-radius:20px;
    -webkit-box-reflect: below 160px
  }
  [a]{
    margin: 50 120;
    rotate:90deg;
  }
</style>

Enter fullscreen mode Exit fullscreen mode

This code 100% matches to the targeted shape.

CSS Battle Daily Target 01 January 2024

So buddies this is the solution of CSS Battle Daily Target 02 January 2024. I hope this solution helpful for you. Thank You 🙏.
Keep Follow Like and Subscribe.

YouTube video solution :
CSS Battle Daily Target 01 January 2024

Top comments (0)