특정 영역안의 여러 박스들을 세로 또는 가로 정렬을 해주는 속성으로, 일종의 float, 또는 table, table-cell과 비슷하다고 생각하면 될 것같다.
display: box - is a version of 2009
display: flexbox - is a version of 2011
display: flex - is the actual version
현재 최신버전은 display:flex이지만, 버전이 낮을 경우 안먹히기때문에 다음처럼 써주는 것이 좋다.
(안드로이드 4.4.2버전에서 먹히지 않았다.)
div{ display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; }
참고 :
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
https://kyusuf.com/post/almost-complete-guide-to-flexbox-without-flexbox
'퍼블리싱 > CSS/CSS3' 카테고리의 다른 글
cursor 속성값에 URL 사용 (0) | 2016.12.05 |
---|---|
ol list-style decimal에서 점제거 (IE8+ 지원) (0) | 2016.08.24 |
border-radius, box-shadow 를 IE8이하버전에 적용시키기 (0) | 2016.05.11 |
CSS3 transform 속성으로 배경색 변경하기 (0) | 2016.04.28 |
CSS Reset (0) | 2015.04.14 |