empty-cells : 비어있는 셀을 표시할지 여부
show 셀을 표시한다
hide 셀을 숨긴다
html)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, height=device-height, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0"> <title>Insert title here</title> <style> table { width: 100%; border: 1px solid #000; } td { height: 50px; border: 1px solid #000; background: #CEFBC9; } /* empty-cells : 비어있는 셀을 표시할지 여부 show 셀을 표시한다 hide 셀을 숨긴다 */ td.show { empty-cells: show; } td.hide { empty-cells: hide; } </style> </head> <body> <table> <tr> <td>1</td> <td>제목을 입력하세요</td> <td>2017-04-18</td> </tr> <tr> <td>2</td> <td class="show"></td> <td class="hide"></td> </tr> </table> </body> </html> | cs |
결과
show 를 한 비어있는 셀은 배경, 테두리가 그대로 남지만 hide 를 한 비어있는 셀은 보이지 않는다
'IT > - 프로그래밍' 카테고리의 다른 글
HTML5/CSS3 column-count : float 없이 다단 레이아웃 만들기 (0) | 2017.06.16 |
---|---|
HTML5/CSS3 clear: both : float 속성을 해제 (0) | 2017.06.15 |
HTML5/CSS3 border-collapse: collapse : cell 사이의 공백을 제거한다 (0) | 2017.06.13 |
HTML5/CSS3 table-layout: fixed : table요소의 cell의 너비를 동일하게 고정 (0) | 2017.06.12 |
HTML5/CSS3 div 블록 레이아웃 가운데 정렬하기 (0) | 2017.06.11 |