$("#print_btn_tm").click(function() {
var link = '<link href=<?php echo base_url("../bootstrap/css/bootstrap.css") ?> rel="stylesheet" />';
var divContents2 = link+$("#print1").html();
var printWindow2 = window.open('', '', 'height=400,width=600');
setTimeout(function (){
printWindow2.document.write(divContents2);
},1500);
setTimeout(function (){
printWindow2.print();
printWindow2.close();
},2000);
});
Run Code Online (Sandbox Code Playgroud)
.table thead tr td,.table tbody tr td{
border-width: 1px;
border-style: solid;
border-color: black;
font-size: 10px;
padding:0px;
}
.scc{
font-size: 10px;
}
@media print{
.table thead tr td,.table tbody tr td{
border-width: 1px;
border-style: solid;
border-color: black;
font-size: 10px;
background-color: red;
padding:0px;
-webkit-print-color-adjust:exact;
}
}
Run Code Online (Sandbox Code Playgroud)
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script …
Run Code Online (Sandbox Code Playgroud)