Skip to content Skip to sidebar Skip to footer

Css - Link Not Clickable When Using Absolute Position

Here is the HTML script of my header:

Solution 1:

Try adding z-index:10; to .toplink{...} class.

Solution 2:

I have a button inside an absolutely positioned div and had this problem. z-index wasn't enough, I used pointer-events: all instead.

Post a Comment for "Css - Link Not Clickable When Using Absolute Position"