WEB/CSS

[CSS] display, float ์‚ฌ์šฉํ•˜์—ฌ ์—ฌ๋ฐฑ ์ง€์šฐ๊ธฐ

developer of the night sky 2023. 9. 26. 16:31

๐Ÿ”ป์—ฌ๋ฐฑ ์ง€์šฐ๊ธฐ๐Ÿ”ป

<body>

    <h1>์ฝ˜ํ…์ธ </h1>
    <div id="list">
        <div id="box1" class="box">์ƒ์ž1</div>
        <div id="box2" class="box">์ƒ์ž2</div>
        <div id="box3" class="box">์ƒ์ž3</div>
    </div>

    <h3>๋˜ ๋‹ค๋ฅธ ๋‚ด์šฉ</h3>


</body>
    <style>

        #list .box {
            border: 1px solid black;
            width: 100px;
            height: 100px;
            display: inline-block;
        }

    </style>

 


1. display์™€ font-size ์‚ฌ์šฉ

    <style>

        #list {
            font-size: 0px;
        }

        #list .box {
            border: 1px solid black;
            width: 100px;
            height: 100px;
            display: inline-block;
            font-size: 1rem;
        }

    </style>


2. float ํ™œ์šฉ

    <style>

        #list .box {
            border: 1px solid black;
            width: 100px;
            height: 100px;
            float: left;
        }

        #list::after {
            content: '';
            display: block;
            clear: both;
        }

    </style>