Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have the following element nested among others, how can I get hold of this element either by css class or attribute 'button_uid' and hide this div?
<div class="segment_0" button_uid="btn" />
Thanks,
在 CSS 中,您可以使用
.segment_0 {visibility:hidden;}
或者
.segment_0 {visibility:none;}