WIKI app, stuck up in css part

I completed the app, I gave contents of the search under <a> tag where if I try to do any styling for that <a> tag its not reflecting… any help please!!!

It’s a bit confusing as there are styles coming from a lot of places. Problems I’ve spotted:

  • the inline style you use for the link sets decoration but it should be text-decoration. Chrome highlighted that for me in dev tools. You did the same thing inside result.
  • the class result from <a class="result"...> doesn’t exist. You wrote it as result in the CSS. It should be .result.

Btw, you might want to replace form_control with form-control for the input.

@sfiquet Thanks for your help :slight_smile: