freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-css/add-different-padding-to-ea...

2.8 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08824 Add Different Padding to Each Side of an Element 0 在元素的每一侧添加不同的填充

Description

有时您会想要自定义一个元素,使其每边都有不同数量的padding 。 CSS允许您控制的padding与元素的所有四个单项两侧padding-top padding-right padding-bottom ,并padding-left属性。

Instructions

在蓝色框的顶部和左侧给出40pxpadding ,但在其底部和右侧只有20px

Tests

tests:
  - text: 你的<code>blue-box</code>类应该给出<code>40px</code> <code>padding</code>元素的顶部。
    testString: 'assert($(".blue-box").css("padding-top") === "40px", "Your <code>blue-box</code> class should give the top of the elements <code>40px</code> of <code>padding</code>.");'
  - text: 你的<code>blue-box</code>类应该给出<code>20px</code> <code>padding</code>元素的权利。
    testString: 'assert($(".blue-box").css("padding-right") === "20px", "Your <code>blue-box</code> class should give the right of the elements <code>20px</code> of <code>padding</code>.");'
  - text: 你的<code>blue-box</code>类应该给出<code>20px</code> <code>padding</code>元素的底部。
    testString: 'assert($(".blue-box").css("padding-bottom") === "20px", "Your <code>blue-box</code> class should give the bottom of the elements <code>20px</code> of <code>padding</code>.");'
  - text: 你的<code>blue-box</code>类应该给元素左边<code>padding</code> <code>40px</code> 。
    testString: 'assert($(".blue-box").css("padding-left") === "40px", "Your <code>blue-box</code> class should give the left of the elements <code>40px</code> of <code>padding</code>.");'

Challenge Seed

<style>
  .injected-text {
    margin-bottom: -25px;
    text-align: center;
  }

  .box {
    border-style: solid;
    border-color: black;
    border-width: 5px;
    text-align: center;
  }

  .yellow-box {
    background-color: yellow;
    padding: 10px;
  }

  .red-box {
    background-color: crimson;
    color: #fff;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  .blue-box {
    background-color: blue;
    color: #fff;
  }
</style>
<h5 class="injected-text">margin</h5>

<div class="box yellow-box">
  <h5 class="box red-box">padding</h5>
  <h5 class="box blue-box">padding</h5>
</div>

Solution

// solution required