CSS14 ボックスモデル

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>ボックスモデル(14)</title>
<style type="text/css">
<!--
*{
margin:10px;
}
h2 {
background-color: #629665;
}
p {
background-color: #95C998;
line-height:1.6em;
font-weight: bold;
}
h2,p {
color: #FFF;
padding:15px;
font-family:sans-serif;
width: 400px;
margin: 0px;
}
-->
</style>
</head>
<body>
<h2>BOX and PADDING</h2>
<p>この領域はボックスといいます。テキストなどのコンテンツ内容を表示する領域です。このボックスと内容との余白をパディングといいます。</p>
</body>
</html>