웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)
media type 본문
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>@import문 내에서 media 타입 지정 문제</title>
<style>
@charset "utf-8";
/* IE 6, 7 에서는 처리가 되지 않습니다. */
/*
@import "screen.css" screen;
@import "print.css" print;
@import "handheld.css" handheld;
*/
@media screen {
body {
}
}
@media print {
body {
}
}
@media handheld {
body {
}
}
</style>
</head>
<body>
</body>
</html>
'css' 카테고리의 다른 글
out-line (0) | 2011.11.11 |
---|---|
min,max height (0) | 2011.11.11 |
line-height (0) | 2011.11.11 |
border (0) | 2011.11.11 |
background (0) | 2011.11.11 |