Responsive Web Design with HTML5 and CSS3
以下是一个简单的响应式网页设计示例,使用HTML5和CSS3技术:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Responsive Web Design</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
.content {
margin: 15px;
padding: 20px;
background-color: #fff;
}
@media (max-width: 768px) {
.content {
margin: 10px;
padding: 15px;
}
}
</style>
</head>
<body>
<div class="header">
<h1>Responsive Web Design</h1>
</div>
<div class="content">
<p>This is a simple responsive web design example using HTML5 and CSS3. The content will adjust to the width of the screen, allowing for a great user experience on all devices.</p>
</div>
</body>
</html>
这个示例展示了一个简单的响应式网页设计。通过在CSS中使用@media
查询,我们可以为不同的屏幕尺寸定义不同的样式规则,使得内容在各种设备上都能显示得合适。
评论已关闭