box-sizing

유석현(SeokHyun Yu)·2022년 11월 14일
0

CSS

목록 보기
14/32
post-thumbnail
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Document</title>
        <!-- border가 커지면 content영역의 크기를 150px로 맞추기 위해 전체 크기가 늘어남 -->
        <!-- 이를 위해서 box-sizing 속성의 값을 기본값인 content-box에서 border-box로 바꾸면 border의 길이를 기준으로 맞춰줌 -->
        <style>
            h2 {
                margin: 10px;
                width: 150px;
            }
            #small,
            #small2 {
                border: 10px solid black;
            }
            #large,
            #large2 {
                border: 30px solid black;
            }
            #small2,
            #large2 {
                box-sizing: border-box;
            }
        </style>
    </head>
    <body>
        <h2 id="small">HELLO</h2>
        <h2 id="large">HELLO</h2>

        <div id="test">
            <h2 id="small2">HELLO</h2>
            <h2 id="large2">HELLO</h2>
        </div>
    </body>
</html>

profile
Backend Engineer

0개의 댓글