基本的に、複数のデバイス(デスクトップ、iphone、ipad、およびブラウザーを搭載したその他のスマートフォン)用のWebページを作成したいと思います。私はcss3を学び始めたばかりで、css3メディアクエリの学習は非常に混乱しています。
私はいくつかのチュートリアルを読みました、そして以下のコードは私が思いついたものです。私がこれを正しく行っているかどうか、または行う必要のある修正があるかどうかを誰かに知らせてもらえますか?
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- META -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<title>Home</title>
<!-- CSS RESET -->
<link rel="stylesheet" type="text/css" href="reset.css" media="all" />
<!-- TARGET SMARTPHONES -->
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-device-width: 320px) and (max-device-width: 480px)" />
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-width: 321px)" />
<link rel="stylesheet" type="text/css" href="" media="only screen and (max-width: 320px)" />
<!-- IPADS -->
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px)" />
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape)" />
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait)" />
<!-- DESKTOP & LAPTOPS -->
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-width: 1224px)" />
<!-- LARGE SCREEN -->
<link rel="stylesheet" type="text/css" href="" media="only screen and (min-width: 1824px)" />
<link rel="stylesheet" type="text/css" href="" media="only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5)" />
</head>
<body>
</body>
</html>