在 html 代码中删除或显示 none 静态文本

Remove or Display none static text in html code

我想为没有 html 元素或没有 id 或 class 的文本元素删除或设置 css 属性 为 display:none属性。 请查看图片以供参考。

你可以试试font-size: 0技巧。

div {
  font-size: 0;
}

div * {
  font-size: 1rem;
}
<div>
  <span>text 1</span>
  unwanted text
  <span>text 2</span>
</div>