这是没有悬停的菜单栏中的项目的外观:
这是悬停效果:
这是我要添加的箭头:
我当前的 CSS 公式如下所示:
ul.profile_menu {
background: url('menu.png') repeat-x;
list-style-type: none;
margin: 0;
padding: 0;
float: left;
li {
display: inline;
a {
float: left;
}
a:hover {
background: url('active_item.png') repeat-x;
height: 45px;
}
}
}
但是如何在活动项目的底部添加箭头?
提前致谢