Is there a mistake in this challenge?

Hi there! I was doing the [freeCodeCamp Challenge Guide: Create Visual Balance Using the text-align Property] (freeCodeCamp Challenge Guide: Create Visual Balance Using the text-align Property) but I am unable to submit my answer. I have looked up the solution, copied it, pasted it and tried to run the code but it still won’t let me progress… Am I doing something wrong? Could you check this out?

Thank you,
Becca

We’ll need to see your code to reproduce the issue.

Oh I’m sorry, will paste it here.

<style>
  h4 {
  text-align: center;
  }
  p {
    text-align: justify;
  }
  .links {
    margin-right: 20px;

  }
  .fullCard {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 5px;
    padding: 4px;
  }
  .cardContent {
    padding: 10px;
  }
</style>
<div class="fullCard">
  <div class="cardContent">
    <div class="cardText">
      <h4>Google</h4>
      <p>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.</p>
    </div>
    <div class="cardLinks">
      <a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a>
      <a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
    </div>
  </div>
</div>

I tried to do it manually and it didn’t work so I tried pasting the “solution” but my terminal says //running tests, nothing else.

Welcome there,

I’ve edited your post for readability. 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 (’).


If the code is correct, and the tests are not passing, it is most likely caused by:

  1. Outdated browser - The most reliable experience is with the latest stable release of Chrome
  2. Browser extensions - They can affect the platform. Please disable all browser extensions with access to the platform.

Hope this helps

Oh, thank you! I didn’t know that, obviously lol

My adblock was the problem. Never had a problem with adblock on this website until now so I will make sure to keep it off :slight_smile:

Thank you for your quick replies!

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