@media print {
.dontprint { display:none }
.printonly { display:inline }
}
@media screen{
.printonly{
display:none;
}
}
when u want an object to be displayed only in print time , and hidden in the view time on the screen
.dontprint { display:none }
.printonly { display:inline }
}
@media screen{
.printonly{
display:none;
}
}
when u want an object to be displayed only in print time , and hidden in the view time on the screen