Веб-страница должна хорошо выглядеть и быть простым в использовании, независимо от устройства.
Что такое адаптивный веб-дизайн?
Адаптивный веб - дизайн делает ваш веб - страницы хорошо выглядеть на всех устройствах (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 Demo
Изменение размера этой страницы отзывчивой!
Лондон
Лондон является столицей Англии.
Это самый густонаселенный город в Соединенном Королевстве, с пригородами более 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 Учебник .