Skip to content

Latest commit

 

History

History
54 lines (48 loc) · 1015 Bytes

003.md

File metadata and controls

54 lines (48 loc) · 1015 Bytes

Target #3 (Push Button)

1° método

714 caracteres em 30/04/2024.

<div class="objeto1"></div>
<div class="objeto2"></div>
<div class="objeto3"></div>
<style>
  body {
    background-color: #6592CF;
  }
  .objeto1 {
    z-index: 1;
    position: absolute;
    top: 75px;
    left: 50px;
    width: 300px;
    height: 150px;
    background-color: #243D83;
  }
  .objeto2 {
    z-index: 3;
    position: absolute;
    top: 75px;
    left: 125px;
    width: 50px;
    height: 50px;
    border: 50px solid;
    border-radius: 150px;
    border-color: #243D83;
    background-color: #EEB850;
  }
  .objeto3 {
    z-index: 2;
    position: absolute;
    top: 25px;
    left: 75px;
    width: 250px;
    height: 250px;
    border-radius: 155px;
    background-color: #6592CF;
  }
</style>


Link para Target #3 (Push Button) em CSSBattle.dev.