Data attributes with css selectors -


this question has answer here:

i trying remove div targeting data selector.

css

[data-id="b5c3cde7-8aa1"]  {     display:none; } 

does not work. is possible?

you have add attribute div hide it:

[data-id="b5c3cde7-8aa1"]  {      display:none;  }
<div data-id="b5c3cde7-8aa1">hide me</div>


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -