๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

StudyLog/CSS

[CSS] margin / border / padding

๐Ÿ“Œ margin

box์—์„œ border(๊ฒฝ๊ณ„)์˜ ๋ฐ”๊นฅ์— ์žˆ๋Š” ๊ณต๊ฐ„

    <style>

        html {
            background-color: tomato;
        }
        body {
            margin-top: 20px;
            margin-left: 10px;
            margin-right: 5px;
            margin-bottom: 10px;
            background-color: thistle;
        }
        div {
            margin-left: 50px;
            height: 150px;
            width: 150px;
            background-color: whitesmoke;
        }

    </style>

'StudyLog > CSS' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

[CSS] Flexbox  (0) 2022.10.09
[CSS] Block / Inline  (0) 2022.10.09