Block Level Clickable Area Not Working Correctly
I'm trying to make a
Solution 1:
In .projectindicator a
, you added float: left
, but this will cause the link to shrink to the size of its contents. I would remove that.
.projectindicator
itself contains a height, while the link doesn't have a height. I'd either add the height to the link itself, or give the link height: 100%
.
Last but not least: make sure .projectindicator
itself doesn't have any padding and the link inside it doesn't have any margin.
Post a Comment for "Block Level Clickable Area Not Working Correctly"