Monthly Archives: April 2009
How to prevent print a block of an HTML page?
Sometimes you may need to prevent printing a block of an html page. You can do it easily. Create a CSS class by following way and add it to your header section: <style type=”text/css” media = “print”>.noprint{display: none;}</style> Note that the media of the css script will be print. Now simply add the css class…