ഫലകം:PHSchoolFrame/Header/styles.css
.print-only-link-class{
float:right;
font-size:0.9em;
}
@media print {
/* Target the specific element by its class or a unique identifier */
.print-only-link-class {
display: none !important;
visibility: hidden !important;
}
/* Alternatively, if it's in a div with a specific style (like the float:right)
and doesn't have a unique class, you might target it by structure: */
div[style*="float:right;"] {
display: none !important;
visibility: hidden !important;
}
}