Font style and text transform

Hi Guys,

I have created my CSS file and everything is working perfectly except for one part of the code.

My code is:

strong {
  text-transform: uppercase;
}

None of my pages like when I try to update either strong or em with CSS. I have also tried changing the style with no luck.

I’m sure there is any easy solution for this, but I am unable to find it. Any help would be great.

Thanks!

Is there a link to the page your referring to as its how to determine your issue without something to look at.

I do not have a link, but here is my html code:

<p>"Thinking is the hardest work there is, which is the <strong>probable</strong> reason why so few engage in it." - Henry Ford</p>

The html works perfect and all the CSS linked to it works perfect except for:

strong {
  text-transform: uppercase;
}

Thanks for your help.

After further examination I found my error. In one of my previous commands I forgot the end “}” and my code looked like this:

p {
  font-size: small;
  color: orange;


strong {
  text-transform: uppercase;
}

Once I added the end “}” everything worked as planned. Thank you very much for your helping me with.

Next time you have something like this, the CSS validator’s one redeeming feature is that it’ll catch silly typos like that.

Whenever I get in a situation like that, where everything looks like it should work but it doesn’t, I use the validators to catch what I figure is very likely a stupid typo.

PS you has a very awesome user name.