[CSS] 背景圖片響應式網頁RWD


Sample code

CSSPLAY | CSS3 Background Images - 100% width/height of container
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
  7. <title>Page Title</title>
  8. <link rel="stylesheet" href="css/style.css" />
  9. </head>
  10. <body>
  11. nothing
  12. </body>
  13. </html>

style.css

  1. body {
  2. background-image : url(../images/first.jpg);
  3. background-repeat : no-repeat;
  4. background-position : center center;
  5. background-attachment : fixed;
  6. -o-background-size : 100% 100%, auto;
  7. -moz-background-size : 100% 100%, auto;
  8. -webkit-background-size: 100% 100%, auto;
  9. background-size : 100% 100%, auto;
  10. }

沒有留言:

技術提供:Blogger.