freeCodeCamp/curriculum/challenges/arabic/01-responsive-web-design/basic-css/use-a-css-class-to-style-an...

3.7 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aecf08806 Use a CSS Class to Style an Element 0 استخدم فئة CSS لتصميم عنصر

Description

تعد الطبقات أنماطًا قابلة لإعادة الاستخدام يمكن إضافتها إلى عناصر HTML. في ما يلي مثال على تصنيف فئة CSS:
<نمط>
.blue-text {
اللون الازرق؛
}
</ النمط>
يمكنك أن ترى أننا أنشأنا فئة CSS تسمى blue-text داخل علامة <style> . يمكنك تطبيق فئة إلى عنصر HTML مثل هذا: <h2 class="blue-text">CatPhotoApp</h2> لاحظ أنه في الخاص بك CSS style عنصر، أسماء فئة تبدأ بنقطة. في سمة فئة عناصر HTML ، لا يتضمن اسم الفئة الفترة.

Instructions

داخل عنصر style الخاص بك ، قم بتغيير محدد h2 إلى .red-text محدد .red-text بتحديث قيمة blue من blue إلى red . امنح عنصر h2 عنصر السمة class بقيمة 'red-text' .

Tests

tests:
  - text: يجب أن يكون عنصر <code>h2</code> باللون الأحمر.
    testString: 'assert($("h2").css("color") === "rgb(255, 0, 0)", "Your <code>h2</code> element should be red.");'
  - text: يجب أن يحتوي عنصر <code>h2</code> <code>red-text</code> للفئة.
    testString: 'assert($("h2").hasClass("red-text"), "Your <code>h2</code> element should have the class <code>red-text</code>.");'
  - text: يجب أن تعلن ورقة الأنماط الخاصة بك عن فئة <code>red-text</code> وأن يكون لونها أحمر.
    testString: 'assert(code.match(/\.red-text\s*\{\s*color\s*:\s*red;\s*\}/g), "Your stylesheet should declare a <code>red-text</code> class and have its color set to red.");'
  - text: 'لا تستخدم إعلانات نمط مضمن مثل <code>style=&quot;color: red&quot;</code> في عنصر <code>h2</code> .'
    testString: 'assert($("h2").attr("style") === undefined, "Do not use inline style declarations like <code>style="color&#58; red"</code> in your <code>h2</code> element.");'

Challenge Seed

<style>
  h2 {
    color: blue;
  }
</style>

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

  <div>
    <p>Things cats love:</p>
    <ul>
      <li>cat nip</li>
      <li>laser pointers</li>
      <li>lasagna</li>
    </ul>
    <p>Top 3 things cats hate:</p>
    <ol>
      <li>flea treatment</li>
      <li>thunder</li>
      <li>other cats</li>
    </ol>
  </div>

  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <label><input type="checkbox" name="personality" checked> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

Solution

// solution required