border-collapse: collapse : cell 사이의 공백을 제거한다



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
<!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;
        margin-bottom: 10px;
    }
    td {
        height: 50px;
        border: 1px solid #000;
    }
    table.collapse {
        /* border-collapse: collapse : cell 사이의 공백을 제거한다 */
        border-collapse: collapse;
    }
    </style>
</head>
 
<body>
    <table class="collapse">
        <tr>
            <td>제목을 입력하세요.</td>
            <td>2017-04-17</td>
        </tr>
    </table>
    
    <table>
        <tr>
            <td>제목을 입력하세요.</td>
            <td>2017-04-17</td>
        </tr>
    </table>
</body>
</html>
cs



결과

collapse 속성이 적용된 테이블(위) 와 적용되지 않은(separate 속성) 테이블(아래)


+ Recent posts