Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 714 Bytes

031.md

File metadata and controls

38 lines (32 loc) · 714 Bytes

Target #31 (Equals)

1° método

423 caracteres em 14/08/2024.

<div class="elemento-1"></div>
<div class="elemento-1 elemento-2"></div>
<style>
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: #AA445F;
  }
  div {
    width: 230px;
    height: 229px;
  }
  .elemento-1 {
    background: #F7EC7D;
    clip-path: circle(50% at 100%);
  }
  .elemento-2 {
    background: #E38F66;
    clip-path: circle(50% at 0);
  }
</style>


Link para Target #31 (Equals) em CSSBattle.dev.