你的网页应该好看,而且易于使用,而不管设备。
什么是自适应网页设计?
自适应网页设计,让您的网页看起来在所有设备上良好(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教程 。