CSS - Link not clickable when using absolute position
I have a button inside an absolutely positioned div and had this problem. z-index
wasn't enough, I used pointer-events: all
instead.
Try adding z-index:10;
to .toplink{...}
class.
I have a button inside an absolutely positioned div and had this problem. z-index
wasn't enough, I used pointer-events: all
instead.
Try adding z-index:10;
to .toplink{...}
class.