treehouse : what would you like to learn today?
Web Design Web Development iOS Development

@media print

  • MEDIA QUERIES

    I use single .css file in which I have apart all web styling at the very bottom also


    @media print {
    /* print styles in here */
    }


    I know media queries as for adaptive / responsive webs
    but is this also MQ so I have to use modernizer or such in order to print in older browsers ?
  • I do not want to use 2 separate files like
    style.css
    print.css

    but have the printing part included in one file
  • Are you worried about the amount of http requests with separate style sheets?
  • not really so much as I wanted to have all css in one file for convenience