我会考虑使用font-size的CSS hack:
.entry { font-size:0;}.entry * { font-size:initial;}<div ><p ><strong>Enter</strong></p><p> somethin here</p>Enter (this will be hidden !!)<div >another text here</div></div>
另一个想法是
visibility:
.entry { visibility:hidden;}.entry * { visibility:visible;}<div ><p ><strong>Enter</strong></p><p> somethin here</p>Enter (this will be hidden !!)<div >another text here</div></div>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)