我有一个固定位置造型的div.当我使用“cntr p”命令打印此div时,div不显示完整内容.
The div is scrollable.
<div class="subtask-generate"> // Too much content in this div. </div>
CSS:
.subtask-generate { margin: 0 auto; overflow-x: hidden; overflow-y: auto; padding: 0; display: block; width: 100%; height: 100%; position: fixed; }
解决方法
尝试这个css规则.你只需要添加溢出:可见;在你的@media只打印规则中.这应该适合你.
<style> @media only print { .subtask-generate { width: auto; height: auto; overflow: visible; } } </style>