I am trying to remove a div targeting it with a data selector.
css
[data-id="b5c3cde7-8aa1"] {
display:none;
}
does not work. Is is possible?
I am trying to remove a div targeting it with a data selector.
css
[data-id="b5c3cde7-8aa1"] {
display:none;
}
does not work. Is is possible?
you have to add this attribute to the div then hide it:
[data-id="b5c3cde7-8aa1"] {
display:none;
}
<div data-id="b5c3cde7-8aa1">hide me</div>