How do I remove this underline? Not text-decoration

When I add X or O to the thumbnail, it remains underlined. I can’t figure out why :confused:

http://codepen.io/shawngrooms/pen/mOEgyG?editors=1100

Add this to your css:

a.thumbnail:link {
  text-decoration: none;
}

Also check your layout in firefox.

1 Like