<style>
div [data-endpoint="/one/two/three/"] {display:none}
</style>
<div data-endpoint="/one/two/three/">
example text
</div>
ライブコードの例: http://jsfiddle.net/DDUNp/2/
<style>
div [data-endpoint="/one/two/three/"] {display:none}
</style>
<div data-endpoint="/one/two/three/">
example text
</div>
ライブコードの例: http://jsfiddle.net/DDUNp/2/
div
と属性の間のスペースは、その属性を持つ要素が;data-endpoint
の子孫要素であることを明示的に指定するためです。div
スペースを削除すると機能します:
div[data-endpoint="/one/two/three/"] {display:none}
参考文献:
多くの空白があります:
div[data-endpoint="/one/two/three/"] {display:none}
div と [ の間のスペースを削除します。
div[data-endpoint="/one/two/three/"] {display:none}
div と [data-endpoint="/one/two/three/"] の間のスペースを削除する必要があります
仕事中。スペースを削除するだけです。
div[data-endpoint='/one/two/three/'] {display:none;}