How to hide div elements in print ? Ask Question
By   Adil Shahbaz     13-Nov-2024    1

How to Hide Elements in Print?

Solutions


Adil Shahbaz

Just Add this CSS :

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

10078
Copyright Future Minutes © 2015- 2024 All Rights Reserved.   Terms of Service  |   Privacy Policy |  Contact US|  Pages|  Whats new?
Update on: Dec 20 2023 05:10 PM