CSS 인라인 블록


inline-block 특징

  1. inline-block 끼리 나열할 경우 문제가 없다. 또한 inline-block은 서로간에 약간의 틈이 존재한다.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    <style>
    .test1{
    display: inline-block;
    background: gold;
    width: 300px;
    height: 300px;
    }
    .test2{
    display: inline-block;
    background: silver;
    width: 300px;
    height: 300px;
    }
    </style>

    <div class="test1"></div>
    <div class="test2"></div>

    inline-snap1


  2. inline-block 끼리 나열 중 한 요소안에 또 다른 inline-block 요소가 나오면 레이아웃이 깨져버린다.

    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
    </style>   		
    .test1{
    display: inline-block;
    background: gold;
    width: 300px;
    height: 300px;
    }

    .test2{
    display: inline-block;
    background: silver;
    width: 300px;
    height: 300px;
    }

    .test2-test{
    display: inline-block;
    background:lime;
    width: 20px;
    height: 100px;
    }
    </style>

    <div class="test1"></div>
    <div class="test2">
    <div class='test2-test'></div>
    <div class='test2-test'></div>
    <div class='test2-test'></div>
    </div>

    inline-snap2


  1. 이럴 경우 각 부모 div에게 vertical-align 속성을 주어야 해결이 가능하다.
1
2
3
.test1, .test2 {
vertical-align: top;
}

inline-snap3


Share