Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

flex-flow가 HTML에서 열 줄 바꿈으로 설정된 경우 유연한 컨테이너 너비

<시간/>

플렉스 높이 및 디스플레이 플렉스가 있는 컨테이너가 있는 경우 열에 자식을 배치하려면 다음을 따르세요.

설정 변경:

-webkit-flex-flow: column wrap;

그리고 이 Chrome의 경우 div와 border top 사이에 자동으로 공간을 추가합니다. 공간을 자동으로 추가하지 않으려면 다음을 사용할 수 있습니다.

margin-bottom:100%;

이렇게 하면 항목이 위로 이동합니다.

.flex-container {
   position: fixed;
   height: 80%;//this will change height of flex container to 80%
   padding: 1;
   margin: 1; // this will change margin to 1
   list-style: none;
   border: 7px solid red; // this will change border to solid red
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: column wrap;
   justify-content: flex-start
   align-content: flex-start;
   align-items: flex-start
}
/** Just to show the elements */
body {
   margin: 0;
   padding: 0;
}
.flex-item {
   background: tomato;
   padding: 5px;
   width: 100px;
   height: 100px;
   margin-bottom: 100%;
   line-height: 150px;
   color: white;
   font-weight: bold;
   font-size: 3em;
   text-align: center;
}
<ul class="flex-container">
   <li class="flex-item">1</li>
   <li class="flex-item">2</li>
   <li class="flex-item">3</li>
   <li class="flex-item">4</li>
   <li class="flex-item">5</li>
   <li class="flex-item">6</li>
</ul>