HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>margin inherit</title>
<link rel="stylesheet" href="css/03_margin_inherit.css">
</head>
<body>
<center><h1>margin inherit</h1></center>
<div class="container">
<!-- (section>h2{margin : inherit;})*3 -->
<section>
<h2>margin : inherit;</h2>
</section>
<section>
<h2>margin : inherit;</h2>
</section>
<section>
<h2>margin : inherit;</h2>
</section>
</div>
</body>
</html>
HTML
๋ณต์ฌ
CSS
.container {
position: relative;
width: 1200px;
border: 3px dashed orange;
margin: auto;
}
section {
/* inherit : ๋ถ๋ชจ์์์ ์ง์ ๊ฐ์ ๋ฌผ๋ ค๋ฐ์์ ์ ์ฉ */
/*
๋ถ๋ชจ์์ : container
์์์์ : section
*/
width: 900px;
height: 200px;
border: 3px solid gray;
margin: inherit;
/* ๋ถ๋ชจ์์๋ก๋ถํฐ ์์๋ฐ์ auto ๊ฐ ์ ์ฉ๋จ */
}
CSS
๋ณต์ฌ