<!DOCTYPE html><html><head><meta charset="utf-8"/><title>NEC:更好的CSS方案</title><meta name="keywords" content=""/><meta name="description" content=""/><m
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>NEC:更好的CSS方案</title>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="css/style.css"/>
<link rel="shortcut icon" href="img/favicon.ico"/>
<link rel="apple-touch-icon" href="img/touchicon.png"/>
</head>
<body>
<div class="g-doc">
<div class="g-hd">
</div>
<div class="g-bd">
<div class="g-mn">
</div>
<div class="g-sd">
</div>
</div>
<div class="g-ft">
</div>
</div>
</body>
</html>
/* media */
/* 橫屏 */
@media screen and (orientation:landscape){
}
/* 豎屏 */
@media screen and (orientation:portrait){
}
/* 視窗寬度<960,設計寬度=768 */
@media screen and (max-width:959px){
}
/* 視窗寬度<768,設計寬度=640 */
@media screen and (max-width:767px){
}
/* 視窗寬度<640,設計寬度=480 */
@media screen and (max-width:639px){
}
/* 視窗寬度<480,設計寬度=320 */
@media screen and (max-width:479px){
}
/* windows UI 貼靠 */
@media screen and (-ms-view-state:snapped){
}
/* 列印 */
@media print{
}