Knowledge Map
table & table-cell 를 이용한 정렬 본문
1 2 3 4 5 6 7 8 9 10 11 12 13 | ol { width: 400px; /*width: 800px;*/ display: table; table-layout: fixed; /* the magic dust that ensure equal width */ background: #ccc } ol > li { display: table-cell; border: 1px dashed red; text-align: center } | cs |
이렇게 하면 갯수에 따라 자동으로 사이즈 맞춰준다.
'WEB > HTML&CSS' 카테고리의 다른 글
이미지 사이즈 조정1 (0) | 2018.03.16 |
---|---|
글자 효과 (0) | 2017.07.11 |
position:absolute & margin:0 auto (1) | 2017.01.31 |
선택자순위, 단위, 기타 css (0) | 2016.07.26 |
속성 선택자 (0) | 2016.07.26 |
Comments