1、前端背景图自适应

如何实现前端背景图片自适应浏览器窗口大小,只需要添加如下CSS样式既可,

            background-image: url("../image/bcg.jpg");
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-position: center 0;

测试代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>注册页面</title>
    <style>
        body{
            /*background: url("../image/bcg.jpg");*/
            background-image: url("../image/bcg.jpg");
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-position: center 0;
        }
    </style>
</head>
<body>
<!--顶部公司图标-->
<div></div>
<!--中间注册信息-->
</body>
</html>

在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐