レスポンシブデザインを提供する多くの既存のCSSフレームワークがあります。
彼らは自由、そして使いやすいです。
W3.CSSを使用しました
レスポンシブデザインを作成するのに最適な方法は次のように、応答性のスタイルシートを使用することですW3.CSS
W3.CSSは、任意のサイズで見栄えのサイトを開発することが容易になります。 デスクトップ、ラップトップ、タブレット、または電話:
W3.CSSデモ
responsivenesを参照するには、ページのサイズを変更!
ロンドン
ロンドンはイギリスの首都です。
これは、1300万人の住民の首都圏で、イギリスで最も人口の多い都市です。
パリ
パリはフランスの首都です。
パリの面積は1200万人以上の人口を抱えるヨーロッパ最大の人口密集地の一つです。
東京
東京は日本の首都です。
これは、首都圏の中心、世界で最も人口の多い首都圏です。
例
<!DOCTYPE html>
<html>
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://www.w3ii.com/lib/w3.css">
<body>
<div
class="w3-container orange">
<h1>w3ii Demo</h1>
<p>Resize this responsive page!</p>
</div>
<div
class="w3-row-padding">
<div class="w3-third">
<h2>London</h2>
<p>London is the capital city of England.</p>
<p>It is the most populous city in the United Kingdom,
with a
metropolitan area of over 13 million inhabitants.</p>
</div>
<div
class="w3-third">
<h2>Paris</h2>
<p>Paris is
the capital of France.</p>
<p>The Paris area is one of the largest
population centers in Europe,
with more than 12 million
inhabitants.</p>
</div>
<div class="w3-third">
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan.</p>
<p>It
is the center of the Greater Tokyo Area,
and the most populous
metropolitan area in the world.</p>
</div>
</div>
</body>
</html>
»それを自分で試してみてください W3.CSSの詳細については、当社の読みW3.CSSチュートリアル 。
ブートストラップ
もう一つの人気フレームワークは、それが応答のWebページを作るために、HTML、CSSとjQueryを使用して、ブートストラップです。
例
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap
Example</title>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div
class="jumbotron">
<h1>My First Bootstrap Page</h1>
</div>
<div class="row">
<div
class="col-sm-4">
...
</div>
<div class="col-sm-4">
...
</div>
<div
class="col-sm-4">
...
</div>
</div>
</div>
</body>
</html>
»それを自分で試してみてください ブートストラップの詳細については、私たちに行くブートストラップチュートリアル 。
スケルトン
もう一つの人気フレームワークは、それが応答のWebページを作るためにのみCSSを使用して、スケルトンです。
例
<!DOCTYPE html>
<html lang="en">
<head>
<title>Skeleton
Example</title>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="skeleton.css">
<link rel="stylesheet" href="normalize.css">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet" type="text/css">
</head>
<body>
<div
class="container">
<h1>My First Skeleton Page</h1>
<div
class="row">
<div class="one column">
...
</div>
<div class="eleven
columns">
...
</div>
</div>
<div class="row">
<div
class="one-half column">
...
</div>
<div class="one-half column">
...
</div>
</div>
</div>
</body>
</html>
»それを自分で試してみてください