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>
本内容为合法授权发布,文章内容为作者独立观点,不代表开发云立场,未经允许不得转载。