1. 程式人生 > >背景圖自適應瀏覽器窗口兩種方式分享

背景圖自適應瀏覽器窗口兩種方式分享

set spa body 自適應 clas har 窗口 ges pre

方式一:
<html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> html{ height: 100%; } body{ padding: 0; margin: 0; background: url("http://tpc.googlesyndication.com/daca_images/simgad/1628755112086520131
") no-repeat; background-size: 100% 100%; position: absolute; } </style> </head> <body> </body> </html>

方式2:


<html>
<head>
<title>自適應</title>
<meta charset="utf-8" />
<style type="text/css">
html{
height: 100%;
}
body{
padding: 0;
margin: 0;
background: url("images/bg.jpg") no-repeat;
background-size: 100%;
position: absolute;
}
</style>
</head>
<body>
111
</body>
</html>

背景圖自適應瀏覽器窗口兩種方式分享