最新のWeb開発のチュートリアル

HTMLレスポンシブウェブデザイン


あなたのWebページには、よく見ると、デバイスに関係なく、使いやすいはずです。


レスポンシブウェブデザインとは何ですか?

レスポンシブウェブデザインは、あなたのWebページには、すべてのデバイスで良い見えます(desktops, tablets, and phones)

レスポンシブウェブデザインは、それが任意の画面上では良い見えるように、サイズを変更隠し、縮小、拡大、またはコンテンツを移動するためにCSSとHTMLを使用してについてです。


自分の応答性のデザインを作成します。

応答性のデザインを作成する1つの方法は、それを自分で作成することです:

<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
.city {
    float: left;
    margin: 5px;
    padding: 15px;
    width: 300px;
    height: 300px;
    border: 1px solid black;
}
</style>
</head>
<body>

<h1>Responsive Web Design Demo</h1>

<div class="city">
  <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="city">
  <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="city">
  <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>

</body>
</html>
»それを自分で試してみてください

W3.CSSを使用して

応答性のデザインを作成する別の方法は、同様に、応答性のスタイルシートを使用することですW3.CSS

W3.CSSは、任意のサイズで見栄えのサイトを開発することが容易になります。 デスクトップ、ラップトップ、タブレット、または電話:

W3.CSSデモ

この応答ページのサイズを変更します!

ロンドン

ロンドンはイギリスの首都です。

それは13万人を超える住民の首都圏で、イギリスで最も人口の多い都市です。

パリ

パリはフランスの首都です。

パリの面積は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 w3-orange">
  <h1>W3.CSS 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チュートリアル