หน้าเว็บของคุณควรมีลักษณะที่ดีและจะใช้งานง่ายโดยไม่คำนึงถึงอุปกรณ์
การออกแบบเว็บที่ตอบสนองคืออะไร?
การออกแบบเว็บที่ตอบสนองทำให้หน้าเว็บของคุณดูดีในทุกอุปกรณ์ (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