E[foo$="bar"]

foo属性の値が文字列 bar で終わる E要素に対してスタイルが適用されます。

example

a[href$=".php"] { color: deepskyblue; }

source

<p><a href="http://***.jp/index.php"> http://***.jp/index.php </a></p>
<p><a href="http://***.jp/index.html"> http://***.jp/index.html </a></p>

display

Efoobar など斜体は仮の名前です。

上に戻る