Search Results for 'media'


1 POSTS

  1. 2007/10/24 CSS Media Type by mkyoon

CSS Media Type

<style type="text/css">
@import url( "./css/screen.css" ) screen;
@import url( "./css/print.css" ) print;
@import url( "./css/mobile.css" ) handheld;
@media print{
body{
    font-size: 12pt;
    font-family: "Times New Roman", serif;
    background: none;
 }
</style>


출처 : CDK http://forum.standardmag.org/

Posted by mkyoon