# BOX SIZING

## BOX SIZING

* content-box

* border-box

* content-box (default): &#x20;

  width = content-box &#x20;

  height = content-box

* border-box:\
  width = content-box + padding-box + border-box\
  height = content-box + padding-box + border-box

```css
box-sizing: border-box;
box-sizing: content-box;
```

## 예시&#x20;

```css
.box-sizing {
  box-sizing: border-box, content-box;
  width: 200px;
  height: 100px;
  border: 1px solid;
  text-align: center;
  line-height: 100px;
}
```
