我对CSS很陌生。根据文档是围绕内容填充。 在这个例子中是“礼物和特别优惠”的内容 在这个简单的例子中,我将padding-right设置为150px,这应该意味着根据文档我应该在内容的右边有150px的空间。但是我的内容右侧没有150px的空白空间。我一定错过了一些融合理解的东西吗?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Chapter 5: Indestructible Boxes</title>
<style type="text/css" media="screen">
h3
{
margin:50px;
padding:0px 150px 0px 0px;
border:1px solid black;
}
</style>
</head>
<body>
<div style="width:200px; background:red;">
<h3>Gifts and Special Offers</h3>
</div>
</body>
</html>
//托尼