什么是響應式Web設計?
- RWD指的是響應式Web設計(Responsive Web Design)
- RWD能夠以可變尺寸傳遞網頁
- RWD對于平板和移動設備是必需的
創建一個響應式設計:
<!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>HTML Demo</h1>
<h2>Resize this reponsive page!</h2>
<br><div class="city">
<h2>Beijing</h2>
<p>Beijing is the capital city of China.</p>
</div><div class="city">
<h2>London</h2>
<p>London is the capital city of England.</p>
</div><div class="city">
<h2>Paris</h2>
<p>Paris is the capital city of France.</p>
</div></body>
</html>
運行結果:
