1
_BLANKターゲットでリンクをターゲットにすることはできますが、特定のクラスはありません。特定のクラスではないターゲットを持つターゲット要素
a[target="_BLANK"] {
// Do something if this link isn't .skip-this class
}
_BLANKターゲットでリンクをターゲットにすることはできますが、特定のクラスはありません。特定のクラスではないターゲットを持つターゲット要素
a[target="_BLANK"] {
// Do something if this link isn't .skip-this class
}
単にCSSを:not
セレクタを使用
CSS
a[target="_BLANK"]:not(.skip-this) {
color: red;
}
a[target="_BLANK"]:not(.skip-this) {
color: red;
}
<a href="" target="_BLANK" class="skip-this">Hello</a>
<a href="" target="_BLANK">Hello</a>
'a [target =" _ blank "]:not("。skip-this ")'は実行する必要があります。 – melancia