มีหลายที่มีอยู่กรอบ CSS ที่มีการออกแบบที่ตอบสนองมี
พวกเขามีอิสระและง่ายต่อการใช้
ใช้ W3.CSS
เป็นวิธีที่ดีในการสร้างการออกแบบที่ตอบสนองคือการใช้แผ่นลักษณะการตอบสนองเช่น W3.CSS
W3.CSS ทำให้มันง่ายต่อการพัฒนาเว็บไซต์ที่ดูดีในทุกขนาด; สก์ท็อปแล็ปท็อปแท็บเล็ตหรือโทรศัพท์:
W3.CSS สาธิต
ปรับขนาดหน้าเพื่อดู responsivenes!
ลอนดอน
ลอนดอนเป็นเมืองหลวงของประเทศอังกฤษ
มันเป็นเมืองที่มีประชากรมากที่สุดในสหราชอาณาจักรมีพื้นที่กรุงเทพมหานครและปริมณฑลกว่า 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 orange">
<h1>w3ii 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
บูต
อีกกรอบเป็นที่นิยมคือเงินทุนที่จะใช้ HTML, CSS และ jQuery เพื่อให้หน้าเว็บที่ตอบสนอง
ตัวอย่าง
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap
Example</title>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div
class="jumbotron">
<h1>My First Bootstrap Page</h1>
</div>
<div class="row">
<div
class="col-sm-4">
...
</div>
<div class="col-sm-4">
...
</div>
<div
class="col-sm-4">
...
</div>
</div>
</div>
</body>
</html>
ลองตัวเอง» เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับเงินทุนให้ไปที่เรา สอน Bootstrap
โครงกระดูก
อีกกรอบเป็นที่นิยมคือโครงกระดูกจะใช้ CSS เดียวที่จะทำให้หน้าเว็บที่ตอบสนอง
ตัวอย่าง
<!DOCTYPE html>
<html lang="en">
<head>
<title>Skeleton
Example</title>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="skeleton.css">
<link rel="stylesheet" href="normalize.css">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet" type="text/css">
</head>
<body>
<div
class="container">
<h1>My First Skeleton Page</h1>
<div
class="row">
<div class="one column">
...
</div>
<div class="eleven
columns">
...
</div>
</div>
<div class="row">
<div
class="one-half column">
...
</div>
<div class="one-half column">
...
</div>
</div>
</div>
</body>
</html>
ลองตัวเอง»