Problems using the u Tag to Underline Text

Tell us what’s happening:

I found some troubles solving simple challenges in the Applied Visual Design, the use of some tags as strong and u, do not work anymore, even I applied the solution, I think is right
There are any mistake in my code?

Your code so far


<style>
  h4 {
    text-align: center;
    height: 25px;
  }
  p {
    text-align: justify;
  }
  
  .links {
    text-align: left;
    color: black;
  }
  .fullCard {
    width: 245px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 5px;
    padding: 4px;
  }
  .cardContent {
    padding: 10px;
  }
  .cardText {
    margin-bottom: 30px;
  }
</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 <u> Ph.D. students</u> at <strong>Stanford University</strong>.</p>
    </div>
    <div class="cardLinks">
      <a ..  </a><br><br>
      <a ...  >Sergey Brin</a>
    </div>
  </div>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0.

1 Like

Try removing that space before Ph.D. FCC really doesn’t like extra spaces.

1 Like

I agree with @Tirjasdyn the FCC does not like the spaces, it takes away the space and it will run well (own experience a long time ago)

Thanks a lot. It works fine know, deleting spaces.

1 Like