我为此导航创建了工具提示箭头。它们出现在悬停时,但它们也出现在下拉列表的底部。我想知道是什么代码将它们保留在那里!
这是我用来实现它们的代码。
.cftopnavrightlower ul > li:hover:after {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 50%;
bottom: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #FFC700;
margin-left: -10px;
}