when div with absolute position is added cannot click on links

前端 未结 8 1429
情歌与酒
情歌与酒 2021-01-01 10:37

I have menu on a page and div that is absolute positioned. The problem is that when this div is on a page, then I cannot click on any links in menu items.

When I re

8条回答
  •  天命终不由人
    2021-01-01 11:04

    Your problem is actually with #left_border covering the links as overlay. limit it's width.. e.g.

    #left_border{
      width:50px;
    }
    

提交回复
热议问题