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.
所以我对悬停和分隔线有疑问。这就是我所说的:
基本上,悬停的背景和分隔线之间有一个空白的背景空间。我浏览了 CSS,但没有解决任何问题。
这是 CSS: http: //pastebin.com/Z7zvbbbP
如果没有您的 HTML 标记,我只能假设您使用默认<li class="divider-vertical"></li>分隔符。在这种情况下,分隔符的左右边距各为 9px。因此,要删除该空间,请尝试以下操作:
<li class="divider-vertical"></li>
.divider-vertical { margin: 0; }
http://jsfiddle.net/kHAxA/