国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmlpadding_bottomCSS Property Value - 如何padding-bottom: 100px;

CSS Property Value - 如何padding-bottom: 100px;

我們想知道如何padding-bottom: 100px;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS margin</title>
<style type="text/css">
p {
  padding: 10px;
  background: #fd9b99;
}

p.one {
  padding-top: 50px;
}

p.two {
  padding-right: 200px;
}

p.three {
  padding-bottom: 100px;
}

p.four {
  padding-left: 300px;
}
</style>
</head>
<body>
  <p class="one">This is a paragraph with top padding of 50px.</p>
  <p class="two">This is a paragraph with right padding of 200px.</p>
  <p class="three">This is a paragraph with bottom padding of 100px.</p>
  <p class="four">This is a paragraph with left padding of 300px.</p>
</body>
</html>