treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Highlight line?

  • Hello everyone! Let me start to say I'm not 100% sure if this is a CSS or something else.

    Basically I want to create the hover line similar to what you get on the BBC website. When you hover over the top menu, you get a small colour line at the bottom.

    BBC.CO.UK

    How would I achieve that?

    Thank you

  • Is this what you're looking for? (CSS)

    a:hover {
      border-bottom: 3px solid red;
    }
    
  • exactly that!, thanks dude :)