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.
我有<div><strike>Stuff I want</strike> Stuff I don't want</div>。就是这样。没有办法解决它。
<div><strike>Stuff I want</strike> Stuff I don't want</div>
有没有办法用 CSS 隐藏“我不想要的东西”?
例如,我可以很容易地单独展示“我不想要的东西”。但是有.strike { display: none; }没有办法只显示“我想要的东西”?
.strike { display: none; }
div { font-size: 0; } strike { font-size: 10px; }
更好的:
div { visibility: hidden; } strike { visibility: visible; }