Quick Tips is a series of posts designed to show some quick html, css and php tips that you may find useful in your every day work or personal projects.

The following code snippet will allow you to set the page breaking behavior to break before every h1 element, giving you a lot of control over how printed versions of your website will be displayed.

@media print {
       h1 {page-break-before:always}
}

If you wish to submit a quick tip to this section please contact me..