html5&css&js代码 024 响应式布局示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Layout Example</title>
<style>
.container {
width: 100%;
margin: auto;
}
.header, .footer {
background-color: #ddd;
padding: 10px 0;
text-align: center;
}
.content {
background-color: #f8f8f8;
padding: 20px;
margin-bottom: 20px;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
</style>
</head>
<body>
<div class="header">
<h1>Responsive Layout</h1>
</div>
<div class="container">
<div class="content">
<h2>Content goes here...</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</p>
</div>
</div>
<div class="footer">
<p>Footer content here...</p>
</div>
</body>
</html>
这个代码实例展示了如何使用CSS媒体查询来创建一个响应式的布局。.container
类根据屏幕宽度的不同使用不同的宽度,从而适应不同的设备。同时,示例中的HTML结构保持简单,并且只包含了必要的内容,以便更好地教学。
评论已关闭