41、请阅读下面的代码,根据注释中的要求填写代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>内边距属性</title>
<style type="text/css">
.box01{
width:300px;
height:300px;
_____________________ /*盒子四个方向的内边距相同,均为10px*/
border:1px solid #000;
}
.box02{
width:300px;
height:300px;
_____________________; /*盒子上内边距为10px,左右内边距为20px,下内边距为30px*/
border:1px solid #000;
}
</style>
</head>
<body>
<div class="box01"></div>
<div class="box02"></div>
</body>
</html> (8分)
第一个:padding:10px;
第二个:padding:10px 20px 30px;
这样填写就好了!
百度一下padding属性你就清楚了,别人告诉你的,你下次还是不懂,自己写出来的才是你自己的