0

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,

4

1 回答 1

0

在 CSS 中,您可以使用

.segment_0 {visibility:hidden;}

或者

.segment_0 {visibility:none;}
于 2012-12-26T03:11:58.623 回答