帮我写一个最简单的自适应网页
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-size: 16px;
}
@media screen and (max-width: 600px) {
body {
font-size: 14px;
}
}
</style>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is a simple adaptive webpage.</p>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/hQs4 著作权归作者所有。请勿转载和采集!