I’m looking for an easy way to hide everything except a certain div and its contents.
<html>
<head></head>
<body>
<div class="header">...</div>
<div class="menu">...</div>
<div class="content">...</div>
<div class="footer">...</div>
</body>.
</html>
So, for example, if I want to print only div.content
, I would do it like this:
.header, .menu, .footer {
display: none;
}
And if the layout is complicated, it becomes messy. Is there an easier way to do this with CSS?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…