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 를 한 비어있는 셀은 보이지 않는다


+ Recent posts