How can i apply CSS to print?
I am trying to print a div in one of my pages but i can't apply css when printing. Writing media="print" inside of the style tags doesn't work. What should i do? <style type="text/css" media="print"> body { font-size:medium; color:Black; font-size:14px; } input { margin:0px; font-size:14px; } .grid { border-color:Gray; border-width:1px; } .alan { border-style:none; } .grid1 { border-color:Gray; border-width:1px; } </style> Use the following: <style type="text/css"> @media print { body { /* styles */ } } </style> There is many ways for that: First: <style type="text/css"media="print"> Second: