The padding properties 青は#0000ffです
見出しには上1em、左右2em、下0.5emのパディングを、段落には0.5emのパディングを指定しています。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>パディングをまとめて指定する</title>
<style type="text/css">
<!--
body { background-color: #F84; color: black; }
h1 { padding: 1em 2em 0.5em; border: 1px solid;
background-color: #FFC; color: red;
font: bold 2em "Comic Sans MS"; }
p { padding: 0.5em; background-color: white; }
-->
</style>
</head>
<body>
<h1 lang="en">The padding properties</h1>
<p>見出しには上1em、左右2em、下0.5emのパディングを、段落には0.5emのパディングを指定しています。</p>
</body>
</html>