Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
见:http ://dals.realsense.co.uk/
在最新的新闻部分(就在 Main Navbar 下方) - 有一个“新闻项目 1”。任何解释,为什么它不能完全点击?即只能点击文本的下半部分。
div class="art-nav-outer"
正在覆盖你的锚。
您可以调整它的高度以匹配您的按钮:
.art-nav-outer { height:38px; }
给您.news-ticker一个相对位置并将 设置为z-index比z-index您的.art-bar.art-nav(当前为 100)更高的值,例如:
.news-ticker
z-index
.art-bar.art-nav
.news-ticker { position: relative; z-index: 101; }