4
4

2 に答える 2

10
于 2013-03-11T17:19:58.800 に答える
1

サファリの場合、svg要素をdivでラップし、スタイルを適用する必要がありました

text-decoration: none !important;

そのdivに(私はsassを使用しています):

.header__logo {
    text-decoration: none !important;  // Safari adds text decoration to    text element inside svg
    a:-webkit-any-link,
    a:hover {
        text-decoration: none;
    }
}
于 2016-05-24T08:07:18.160 に答える