CSS Battle 19 negative box

황상진·2022년 8월 2일
0

CSS-Battle

목록 보기
6/10

CSS Battle 19 negative box

<div class= "triangle"></div>
<div class="trapezoid"></div>
<style>
  body{
    background:#172D2C;
  }
  div{
    position: fixed;
    background:#E9AF53;
    
  }
  .triangle{
    width:180px;
    height: 130px;
    top:20px;
    left:200px;
    clip-path:polygon(0 0, 100% 50%, 0 100%);
  }
  .trapezoid{
    width:180px;
    height: 195px;
    top:85px;
    left:20px;
    clip-path:polygon(0 0, 100% 33.3%, 100% 100%, 0 66.6%);
  }
  
</style>

profile
Web FrontEnd Developer

0개의 댓글