放大和缩小我的页面时我的页面在 Chrome 浏览器中的链接背景被扭曲,页面看起来像这样放大 Chrome 后的页面外观。可以在代码中进行哪些更改以修复它以在不扭曲背景图形的情况下放大 Chrome 浏览器?
这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Page Under Construction</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<style type="text/css">
body {
background:#d7df29 url('1.jpg') center center no-repeat;
width: 100%;
height: 100%;
}
html, body {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
</body>
</html>
非常感谢你!