Skip to content

Latest commit

 

History

History
50 lines (48 loc) · 905 Bytes

missing-slice.md

File metadata and controls

50 lines (48 loc) · 905 Bytes

<div class="content">
  	<div></div>
    <div></div>
    <div></div>
  	<div></div>
</div>
<style>
  body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #E3516E;
    margin: 0;
  }
  .content {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    height: 200px;
  }
  div:nth-of-type(2) {
    display: flex;
    width: 100px;
    height: 100px;
    border-top-left-radius: 100%;
    background: #51B5A9;
  }
  div:nth-of-type(3) {
    display: flex;
    width: 100px;
    height: 100px;
    border-top-right-radius: 100%;
    background: #FADE8B;
  }
  div:nth-of-type(4) {
    display: flex;
    width: 100px;
    height: 100px;
    border-bottom-left-radius: 100%;
    background: #F7F3D7;
  }
</style>