Search code examples
cssanimationbuttonhoverclickable

Display:block; not working for fully clickable button


I'm trying to make my buttons fully clickable, but I'm missing something, I think my formatting is wrong or something. I think I have all the pieces. Some potential complications include the fact that it is animated.

http://jsfiddle.net/4mHTa/49/

#aboutme:a {
display: block;
width: 100%;
height: 100%;}

Greatly appreciate the help!


Solution

  • It's a little typo's fault, no need for that colon after #aboutme

    #aboutme a {
      display: block;
      width: 100%;
      height: 100%;
    }