freeCodeCamp/curriculum/challenges/arabic/03-front-end-libraries/bootstrap/add-id-attributes-to-bootst...

2.2 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aec908853 Add id Attributes to Bootstrap Elements 0 إضافة سمات المعرف إلى عناصر Bootstrap

Description

تذكر أنه بالإضافة إلى سمات الصف ، يمكنك إعطاء كل عنصر من id خاصية id . يجب أن يكون كل معرف فريدًا لعنصر محدد ويستخدم مرة واحدة فقط لكل صفحة. دعونا نمنح معرفًا فريدًا لكل عنصر من عناصر div للفئة well . تذكر أنه يمكنك إعطاء عنصر معرف مثل هذا: <div class="well" id="center-well"> أعط البئر على اليسار معرف left-well . اعط البئر على اليمين معرف right-well .

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert($(".col-xs-6").children("#left-well") && $(".col-xs-6").children("#left-well").length > 0, "Give your left <code>well</code> the id of <code>left-well</code>.");'
  - text: امنح حقك <code>well</code> معرف <code>right-well</code> .
    testString: 'assert($(".col-xs-6").children("#right-well") && $(".col-xs-6").children("#right-well").length > 0, "Give your right <code>well</code> the id of <code>right-well</code>.");'

Challenge Seed

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <div class="well">
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
        <button class="btn btn-default target"></button>
      </div>
    </div>
  </div>
</div>

Solution

// solution required