Data attributes with css selectors -
this question has answer here:
- select elements data attribute in css 4 answers
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
Post a Comment