単にコンテンツをより狭い幅で表示できるようにします。
モバイル最適化の場合は、ズーム率を制御するためにいくつかのメタタグも追加する必要があります。
ここのように:
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="user-scalable=no, width=device-width, maximum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
特別なcssルールを追加するには、ここでこれを試してください。
<style type="text/css" media="screen">
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 630px) {
...
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
...
}
</style>