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;
}