DEV Community

Cover image for CSS Battle #7 level 33
Yash Harkhani
Yash Harkhani

Posted on

CSS Battle #7 level 33

Link: https://cssbattle.dev/play/33

<p a><p b>
<style>
  *{
    background: #1A4341;
    position: fixed
  }
  p[a]{
    width: 75;
    height: 150;
    background: #998235;
    margin: 67 117;
    border-radius: 100px 0 0 100px
  }p[a]:before{
    content: "";
    background: #0B2429;
    width: 30;
    height: 30;
    border-radius: 100%;
    position: absolute;
    margin: 30
  }
  p[b]{
    width: 100;
    height: 100;
    background: #F3AC3C;
    border-radius: 0 100px 0 0;
    margin: 42 192
  }
Enter fullscreen mode Exit fullscreen mode

Top comments (0)