Answers for "css battle i scored 100 % number 4: simple square"

CSS
0

css battle i scored 100 % number 4: simple square

<body>
<div></div>
<style>
  div {
    width: 200px;
    height: 200px;
    background: #b5e0ba;
    position:absolute;
    top:0px;
    left:0px;
  }
  body{
    background:#5d3a3a;
  }
</style>
</body>
Posted by: Guest on April-25-2021
0

css battle i scored 100 % number 3

<body>
  <div class="C"></div>
<div class="A">
  <div class="B"></div>
  </div>
<style>
  .A {
    width: 200px;
    height: 100px;
    background: #FE5F55;
    position:absolute;
    top:90;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .B{
    width:140px;
    height:40px;
    border-radius:20px;
    background-color:#A64942;
  }
  .C{
    width:200px;
    height:120px;
    border-radius:20px;
    background-color:#A64942;
    
  }
  body{
    background-color:#293462;
    display:flex;
    justify-content:center;
    align-items:center;
  }
</style>
</body>
Posted by: Guest on April-23-2021
0

css battle i scored 100% number 4

<body>
<div class="A"></div>
<div class="B"></div>
<div class="C"></div>
<div class="D"></div>
<style>
  body{
	margin:0px;
  }
  .A{
    margin-left: 0px;
    background:#F7EC7D;
    height:50;
  }
  .B{
    background:#E38F66;
    height:50;
  }
  .C{
    background:#AA445F;
    height:100;
  }
  .D{
    background:#62306D;
    height:100;
  }
</style>
</body>
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language