文章标题

来源:互联网 发布:电动汽车销售量数据 编辑:程序博客网 时间:2024/06/18 09:25

怎么使大图片全屏显示:

<!doctype html><html lang="en"><head>  <meta charset="UTF-8">  <meta name="viewport"        content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">  <meta http-equiv="X-UA-Compatible" content="ie=edge">  <title>Document</title>  <style>    *{      margin: 0;      padding:0;    }    html,body{      height:100%;    }    div{      background: url("banner2.jpg")no-repeat;      background-size: 100% 100%;      width:100%;      height:100%;    }  </style></head><body><div></div></body></html>
原创粉丝点击