HTML 设置全屏图片背景 - 简单易行
<!DOCTYPE html>
<html>
<head>
<title>全屏图片背景</title>
<style type="text/css">
body {
background-image: url('https://picsum.photos/1920/1080');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<!-- 页面内容 -->
</body>
</html>
原文地址: http://www.cveoy.top/t/topic/mOLo 著作权归作者所有。请勿转载和采集!