Search
Duplicate

padding & box-sizing

HTML

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>padding - box-sizing </title> <link rel="stylesheet" href="css/03_padding_box.css"> </head> <body> <center><h1>padding์—๋Š” box-sizing ๊ณ ๋ ค</h1></center> <div class="container"> <!-- .item.box${$}*2 --> <div class="item box1">1</div> <div class="item box2">2</div> </div> </body> </html>
HTML
๋ณต์‚ฌ

CSS

.container { position: relative; width: 1200px; border: 3px dashed orange; text-align: center; } .item { width: 100px; height: 100px; line-height: 100px; border: 1px solid gray; background-color: #ddd; } .box1 { padding: 20px; box-sizing: content-box; /* content-box : ์ปจํ…์ธ  ํฌ๊ธฐ๋งŒ ๋ฐ•์Šค์˜ ํฌ๊ธฐ๋กœ ์ง€์ • */ } .box2 { padding: 20px; line-height: 60px; box-sizing: border-box; /* border-box : content+padding+border ๋ฅผ ํฌ๊ธฐ๋กœ ์ง€์ • */ }
CSS
๋ณต์‚ฌ