Type Attribute selector should be used to select the checkboxes keeps showin up i have checked a lot but keeps saying that. pls help


Your code so far
Pls guyz i need your help am stuck here
Please u guyz shud help me out

1 Like

Without seeing your code all anyone can do is guess. Screenshots do not help. Plus it would help if you told us which lesson you’re having an issue with.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Also, in the future

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

buddy, share the link of the problem as screenshots can’t help us in solving the problem.

In the future, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

try this:

[type='checkbox']{
    margin: 10px 0px 15px 0px;  
    }

This should be written in the style block,along with all the other style propeties,so the final code looks like this:

<style>

  [type='checkbox']{

    margin: 10px 0px 15px 0px;  

    }

  .red-text {

    color: red;

  }

  h2 {

    font-family: Lobster, monospace;

  }

  p {

    font-size: 16px;

    font-family: monospace;

  }

  .thick-green-border {

    border-color: green;

    border-width: 10px;

    border-style: solid;

    border-radius: 50%;

  }

  .smaller-image {

    width: 100px;

  }

  .silver-background {

    background-color: silver;

  }

</style>

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Thanks It worked
I thank u all

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.