Twoja strona internetowa powinna wyglądać dobrze i być łatwy w obsłudze, niezależnie od urządzenia.
Co jest Responsive Web Design?
Responsive Web Design sprawia, że strona wygląda dobrze na wszystkich urządzeniach (desktops, tablets, and phones) .
Responsive Web Design jest temat za pomocą CSS i HTML, aby zmienić rozmiar, ukrywać, zmniejszać, powiększać lub przesuwać zawartość, aby wyglądać dobrze na każdym ekranie:
Stwórz własną elastyczne projektowanie
Jednym ze sposobów na stworzenie elastycznego projektowania, jest jej tworzenie się:
Przykład
<!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>
Spróbuj sam " Korzystanie W3.CSS
Innym sposobem na stworzenie elastycznego projektowania, jest użycie arkusza stylów czułe, jak W3.CSS
W3.CSS ułatwia rozwijanie witryn, które wyglądają ładnie w dowolnym rozmiarze; stacjonarny, laptop, tablet lub telefon:
W3.CSS Demo
Resize to czułe stronę!
Londyn
Londyn jest stolicą Anglii.
Jest to najbardziej zaludnione miasto w Wielkiej Brytanii, z metropolii powierzchni ponad 13 milionów mieszkańców.
Paryż
Paryż jest stolicą Francji.
Paris Obszar ten jest jednym z największych skupisk ludności w Europie, z czego ponad 12 milionów mieszkańców.
Tokio
Tokio jest stolicą Japonii.
To centrum Greater Tokyo Area, a najbardziej zaludnionych metropolii na świecie.
Przykład
<!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>
Spróbuj sam " Aby dowiedzieć się więcej o W3.CSS, przeczytaj naszą W3.CSS Tutorial .