Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I am able to pass this exercise with a wrong solution #10492

Closed
mrehmansaeed opened this issue Sep 6, 2016 · 2 comments
Closed

I am able to pass this exercise with a wrong solution #10492

mrehmansaeed opened this issue Sep 6, 2016 · 2 comments
Labels
help wanted Open for all. You do not need permission to work on these.

Comments

@mrehmansaeed
Copy link

mrehmansaeed commented Sep 6, 2016

Challenge Add Elements within your Bootstrap Wells

The exercise asks you to nest three button elements in each div element containing the .well class. I wanted to report a bug I found. I was able to pass this test by nesting six button elements in only one div element containing the .well class,
My code:

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



      </div>
    </div>
    <div class="col-xs-6">
      <div class="well">
        <button></button>
        <button></button>
        <button></button>
        <button></button>
        <button></button>
        <button></button>





      </div>
    </div>
  </div>
</div>
@aarhusgregersen
Copy link

Can you include a link to the particular challenge and a description of the expected input for the uninitiated?

@BKinahan BKinahan added help wanted Open for all. You do not need permission to work on these. tests labels Sep 7, 2016
@BKinahan
Copy link
Contributor

BKinahan commented Sep 7, 2016

The first test checks for at least 6 buttons within any div with the well class, when it should test that each of the two wells has 3 buttons.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Open for all. You do not need permission to work on these.
Projects
None yet
Development

No branches or pull requests

3 participants