Reputation: 384
I'm trying to make a horizontal menu bar that's flush with the top of the screen. It works fine in Chrome, but in Firefox, the LIs are half cut off.
How do I get it to work properly?
Upvotes: 0
Views: 258
Reputation: 1381
.topmenu li:hover a, .topmenu a:hover { position:absolute; display:inline-block;
width:inherit; height:30px; background:inherit; text-align:center; }
That should work for you. Just add position absolute to this section.
Upvotes: 1