HTML CSS examples for CSS:Selector
Selector to Select Attribute by value
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div[data-endpoint="/one/two/three/"] { display:none } </style> <!--from w w w .j av a 2 s .co m--> </head> <body> <div data-endpoint="/one/two/three/"> Lorem ipsum do </div> </body> </html>