在 Firefox 和 IE 中,当我使用带有伪选择器的 CSS 边框三角形解决方案时,:after
边框看起来会磨损。请参阅此图像进行比较:
这是来自 Chrome 和 Firefox。相关代码如下:
li.active::after {
content: "";
width: 0;
height: 0;
position: absolute;
bottom: -8px;
left: 40%;
border-style: solid;
border-width: 8px 10px 0 10px;
border-color: #FFF200 transparent transparent transparent;
}