by shigemk2

当面は技術的なことしか書かない

a[href=""]

とほほのスタイルシート入門(基礎知識)

a[href=$=".html"] { color: red; } // aタグのhref属性が.htmlで終わる要素にマッチする
[href$=".html"] { color: red; }
a[$=".html"] { color: red; } // aタグのhref属性が.htmlで終わる要素にマッチする
a[href="./hoge.html"] { color: blue; }
[href$=".html"] { color: red; }
h1[class="hoge"] { font-weight: bold; }

と書くことも出来るけど、それなら

h1.hoge {
  font-weight: bold;
}

て書いたほうがいいよね。