Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
// берем пагу
// регуляркой вырезаем нужный нам див
// выводим результат
Расскажите, пожалуйста, на примерее:print.css
для всего остального, кроме указанного diva, указываешь display:none
 <a class="print" onclick="print_doc()">Печать</a></p>
<div class="clas1">
  текст на печать
</div>
<div class="clas2">
    не печатать текст
</div>
	]	<script language="JavaScript" type="text/javascript">
	
	function print_doc(){
	window.print() ;
	}
	
	</script>
	@media print{
    .clas2{
        display:none;
    }
}
	@media print{
    div{
        display:none;
    }
    .clas1{
        display:block;
    }
}
	