你的網頁應該好看,而且易於使用,而不管設備。
什麼是自適應網頁設計?
自適應網頁設計,讓您的網頁看起來在所有設備上良好(desktops, tablets, and phones) 。
自適應網頁設計是使用CSS和HTML來調整,隱藏,縮小,放大,或移動內容,使它看起來不錯的任何屏幕上:
創建自己的響應式設計
創建響應式設計的一種方式,是自己創建它:
例
<!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萬居民的大都市區。
巴黎
巴黎是法國的首都。
巴黎地區是歐洲最大的人口中心,擁有超過12萬居民中的一個。
東京
東京是日本的首都。
這是大東京地區的中心,是世界上人口最多的大都市區。
例
<!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教程 。