我正在使用以下内容来运行一些扩展/折叠 div
<div class="FAQ">
<a href="#hide1" class="hide" id="hide1">+</a>
<a href="#show1" class="show" id="show1">-</a>
<div class="question"> Question Question Question Question Question Question Question Question Question Question Question? </div>
<div class="list">
<p>Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer </p>
</div>
</div>
CSS
/* source: http://www.ehow.com/how_12214447_make-collapsing-lists-java.html */
.FAQ {
vertical-align: top;
height:auto !important;
}
.list {
display:none;
height:auto;
margin:0;
float: left;
}
.show {
display: none;
}
.hide:target + .show {
display: inline;
}
.hide:target {
display: none;
}
.hide:target ~ .list {
display:inline;
}
如发现(并继续)here Pure CSS collapse/expand div
我的问题是我无法使用 Ctrl+p 或使用函数 printpage 脚本打印展开的 div。
我对这种事情不熟悉,我觉得答案一定是盯着我的脸。有什么我可以添加到我的 print.css 文件中以强制它至少忽略类常见问题解答的功能并打印所有隐藏的内容,如果我不能让它只打印扩展的 div。
提前致谢。