freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/css-grid/use-grid-row-to-control-spa...

1.7 KiB

id title challengeType videoUrl localeTitle
5a90373638fddaf9a66b5d39 Use grid-row to Control Spacing 0 使用网格行控制间距

Description

当然,您可以像使用列一样使项目消耗多行。您可以使用网格项上的grid-row属性定义项目开始和停止的水平线。

Instructions

使用item5类的元素消耗最后两行。

Tests

tests:
  - text: <code>item5</code>类应该有一个<code>grid-row</code>具有的值属性<code>2 / 4</code>
    testString: 'assert(code.match(/.item5\s*?{[\s\S]*grid-row\s*?:\s*?2\s*?\/\s*?4\s*?;[\s\S]*}/gi), "<code>item5</code> class should have a <code>grid-row</code> property that has the value of <code>2 / 4</code>.");'

Challenge Seed

<style>
  .item1{background:LightSkyBlue;}
  .item2{background:LightSalmon;}
  .item3{background:PaleTurquoise;}
  .item4{background:LightPink;}

  .item5 {
    background: PaleGreen;
    grid-column: 2 / 4;
    /* add your code below this line */


    /* add your code above this line */
  }

  .container {
    font-size: 40px;
    min-height: 300px;
    width: 100%;
    background: LightGray;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 10px;
  }
</style>

<div class="container">
  <div class="item1">1</div>
  <div class="item2">2</div>
  <div class="item3">3</div>
  <div class="item4">4</div>
  <div class="item5">5</div>
</div>

Solution

// solution required