CSS2 sizing 속성과 CSS3 box-sizing 속성의 차이점을 알아봅시다.
CSS2 크기 조정 속성
<html>
<head>
<style>
.div1 {
width: 200px;
height: 100px;
border: 1px solid green;
}
.div2 {
width: 200px;
height: 100px;
padding: 50px;
border: 1px solid pink;
}
</style>
</head>
<body>
<div class = "div1">TutorialsPoint.com</div></br>
<div class = "div2">TutorialsPoint.com</div>
</body>
</html> CSS3 상자 크기 속성
<html>
<head>
<style>
.div1 {
width: 300px;
height: 100px;
border: 1px solid blue;
box-sizing: border-box;
}
.div2 {
width: 300px;
height: 100px;
padding: 50px;
border: 1px solid red;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class = "div1">TutorialsPoint.com</div></br>
<div class = "div2">TutorialsPoint.com</div>
</body>
</html>