我真的很奇怪的問題。我想做矩形矩形,但不知道爲什麼,我不能設置內部矩形的填充頂部。有人可以告訴我爲什麼嗎?div的頂部div div
#outsideRect{
width: 260px;
height: 440px;
background-color: #4084dd;
border-radius: 10px;
}
#insideRect{
width: 200px;
height: 60px;
background-color: ghostwhite;
border-radius: 10px;
margin: 50px auto;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calculator</title>
<link rel="stylesheet" href="css/style.css">
<script src="scripts/jquery-3.1.0.js"></script>
<script src="scripts/script.js"></script>
</head>
<body>
<div id="page">
<div id="outsideRect">
<div id="insideRect">
as
</div>
</div>
</div>
</body>
</html>
YAS,這就是解決方案:)但是爲什麼它在insideRect dosent與宣稱的 「填充頂」 的作品? –
因爲填充是*裏面的元素。因此,在內部矩形中添加「padding-top」可將「as」添加到內部矩形中。 – Scott