CSS 전투 - #80

7265 단어 css
최근 Web Dev Simplified에서 Kevin Powell과 Kyle 간의 CSS 전투 비디오를 보았습니다.
그들은 서로 도전하고 11분 이내에 CSS 디자인을 구축했습니다.

나는 그들을 이길 수 있는지 확인하기로 결정했습니다.
이것은 내가 만들어야 했던 디자인입니다.



10분만에 챌린지를 완료했지만 100% 맞추지는 못했습니다.

코드는 다음과 같습니다.

<div class="wrapper">
  <div class="white"></div>
  <div class="white"></div>
  <div class="white"></div>
  <div class="white"></div>
  <div class="white"></div>
  <div class="white"></div>
  <div class="white"></div>
  <div class="black-box">
    <div class="black"></div>
    <div class="black"></div>
    <div class="black blank"></div>
    <div class="black"></div>
    <div class="black"></div>
    <div class="black"></div>
  </div>
</div>
<style>
  *{
    box-sizing : border-box;
  }
  body {
    padding : 0;
    margin : 0;
    background-color : #998235;
    width : 100vw;
    height : 100vh;
    display : flex;
    justify-content : center;
    align-items : center;
  }
  .wrapper {
    height : 100px;
    width : 180px;
    background-color : #191919;
    border-radius : 10px;
    display: flex;
    justify-content: space-evenly;
    align-items : flex-end;
    padding-bottom :5px;
    position : relative;
  }
  .white {
    width : 20px;
    height : 70px;
    background-color : #FFFFFF;
    border-radius : 5px;
  }
  .black-box {
/*     background : red; */
    position : absolute;
    height : 50px;
    width : 90%;
    top : 15px;
    display : flex;
    justify-content : space-evenly;
  }
  .black {
    background-color : #191919;
    height : 90%;
    width : 15px;
  }
  .blank {
    background : none;
  }
</style>


여기에서 챌린지를 확인할 수 있습니다: Battle #80

좋은 웹페이지 즐겨찾기