Answers for "display print only css"

CSS
0

Print div only

@media print {
  body * {
    visibility: hidden;
  }
  #section-to-print, #section-to-print * {
    visibility: visible;
  }
  #section-to-print {
    position: absolute;
    left: 0;
    top: 0;
  }
}
Posted by: Guest on January-15-2021
0

css print

@page {
margin: 0.5cm;
}
Posted by: Guest on December-31-2020

Browse Popular Code Answers by Language