Notice
Recent Posts
Recent Comments
Link
«   2024/04   »
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
Archives
Today
Total
관리 메뉴

web sprit

[CSS] table 초기화 및 Tip 본문

웹1.0/CSS, CSS2

[CSS] table 초기화 및 Tip

커드만 2017. 11. 15. 16:49

  1. table 초기화

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    table{
        padding:0;
        border:0;
        border-spacing:0px;
        border-collapse:collapse;
    }
    th, td{
        padding:0;
    }
     
    cs

  2. table th 또는 td를 부모로 정하여 position : relative 값을 주면
    table 라인이 IE 에서 나오지 않는다.



Comments