html - Add space before body while printing page -
i want add space when print document before html body. tried both margin-top , padding-top in stylesheet has no effect.
how add whitespace before printed content? appreciated
@media print { html,body,div,table,tr,td,span { padding-top:550px; margin-top:550px; } .noshow { display:none; } .screenhide { display:inline; } }
find relevant section within html document, , enter
bunch of times, , work off process of trial , error.
= break aka enter (however mark languages don't understand white space)
so have force it.
i.e.
<html> <head> <title>i need space</title> <head></head> <body> <br /><br /><br /><br /><br /> /* give 6 lines worth of space */ need space before paragraph! </body> </html>
Comments
Post a Comment