box model

BackEnd_Ash.log·2024년 8월 25일
0

html-css

목록 보기
15/16
post-custom-banner

box model

.box1 {
    background-color: gray;
    width: 400px;
    height: 300px;
    border: 2px solid red;
    padding: 50px;
    margin: 50px;
}

위의 스타일을 적용하게 되면

box model image

처럼 나오게 됩니다.

box model image

box model image

.container {
    background-color: gray;
}
.box1 {
    width: 200px;
    height: 200px;
    background-color: white;
    border: 3px solid blue;
    box-sizing: content-box;
    padding: 50px;
}

.box2 {
    width: 200px;
    height: 200px;
    background-color: white;
    border: 3px solid red;
    box-sizing: border-box;
    padding: 50px
}
.box3 {
    width: 200px;
    height: 200px;
    background-color: white;
    border: 3px solid green;
    padding: 50px;
}

box model image

box-sizing 의 기본 값을 content-box 로 되어있습니다.

profile
꾸준함이란 ... ?
post-custom-banner

0개의 댓글