freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-css/override-class-declarations...

2.2 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf06756 Override Class Declarations with Inline Styles 0 使用内联样式覆盖类声明

Description

所以我们已经证明了id声明覆盖了类声明无论它们在style元素CSS中的声明位置如何。还有其他方法可以覆盖CSS。你还记得内联样式吗

Instructions

使用inline style尝试使我们的h1元素变白。请记住,在线条样式中如下所示: <h1 style="color: green;">h1元素上保留blue-textpink-text类。

Tests

tests:
  - text: 您的<code>h1</code>元素应该具有<code>pink-text</code>类。
    testString: 'assert($("h1").hasClass("pink-text"), "Your <code>h1</code> element should have the class <code>pink-text</code>.");'
  - text: 你的<code>h1</code>元素应该有<code>blue-text</code> 。
    testString: 'assert($("h1").hasClass("blue-text"), "Your <code>h1</code> element should have the class <code>blue-text</code>.");'
  - text: 您的<code>h1</code>元素应具有<code>orange-text</code>的ID。
    testString: 'assert($("h1").attr("id") === "orange-text", "Your <code>h1</code> element should have the id of <code>orange-text</code>.");'
  - text: 为您的<code>h1</code>元素提供内联样式。
    testString: 'assert(document.querySelector("h1[style]"), "Give your <code>h1</code> element an inline style.");'
  - text: 你的<code>h1</code>元素应该是白色的。
    testString: 'assert($("h1").css("color") === "rgb(255, 255, 255)", "Your <code>h1</code> element should be white.");'

Challenge Seed

<style>
  body {
    background-color: black;
    font-family: monospace;
    color: green;
  }
  #orange-text {
    color: orange;
  }
  .pink-text {
    color: pink;
  }
  .blue-text {
    color: blue;
  }
</style>
<h1 id="orange-text" class="pink-text blue-text">Hello World!</h1>

Solution

// solution required