Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 824 Bytes

015-overlap.md

File metadata and controls

43 lines (38 loc) · 824 Bytes

#15 Overlap

GO TO THE PROBLEM

#15 Overlap

Solutions

<div></div>
<style>
  body {
    background: #09042a;
  }
  div,
  div:after {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
  }
  div {
    top: 75px;
    left: 75px;
    background: #7b3f61;
    box-shadow: 100px 0 0 0 #e78481;
    overflow: hidden;
  }
  div::after {
    content: '';
    background: #09042a;
    left: 100px;
  }
</style>
<a><style>*{background:#09042a}a,a:after{width:150;height:150;border-radius:50%;position:fixed;background:#7b3f61;left:75}a{top:75;box-shadow:100px 0 0 0#e78481;overflow:hidden}a:after{content:'';background:#09042a;left:100