CSS 전투 - #80
7265 단어 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
Reference
이 문제에 관하여(CSS 전투 - #80), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/thevinitgupta/css-battle-80-15kb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)