开发者

Weird issue in navigation when in Safari Browser

开发者 https://www.devze.com 2023-02-20 01:26 出处:网络
I have navigation bar in my website that makes the links work properly everywhere.But when on Safari, for some reason the links are not clickable unless you highlight th开发者_开发技巧e empty space ab

I have navigation bar in my website that makes the links work properly everywhere. But when on Safari, for some reason the links are not clickable unless you highlight th开发者_开发技巧e empty space above the option. I diagnosed it further to find that I was adding a negative margin-top for the searchbox to align it properly with the options, when I removed that margin-top, the links were clickable. Any ideas?


You could use a z-index and position:absolute to make sure your navigation Div is on top. thats more than likely what the problem is. Try that... add

z-index:100px;
position:absolute;

to your navigation in css.

0

精彩评论

暂无评论...
验证码 换一张
取 消