CSS13 ボックスモデル

<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>ボックスモデル(13)</title>
<style type="text/css">
<!--
* {
margin: 0;
}
body {
background-image:url("http://cdn-ak.f.st-hatena.com/images/fotolife/w/web-design-advance/20120417/20120417094230.jpg");
background-repeat: repeat-y;
}
h2 {
color: #FFF;
background-color: #c3c;
font-family:sans-serif;
width:70px;
margin: 50px 0 20px;
padding: 5px:
}
p {
font-family:sans-serif;
line-height:1.6em;
font-weight: bold;
margin-top: px;
margin-left: 70px;
width: 340px;
}
-->
</style>
</head>
<body>
<h2>BOX</h2>
<p>この領域はボックスといいます。テキストなどのコンテンツ内容を表示する領域です。マージンはこのボックスの余白のことをいいます。</p>
</body>
</html>