0

背景画像を常にページの下部に貼り付けるにはどうすればよいですか。これは私が問題を抱えているページです。本文に画像を添付していますが、CSS は

html {
height:100%;
     }

body {
background: #fff url(images/bg.png) repeat-x;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased; 
color: #404040;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-smoothing: antialiased;
line-height: 1.5em;
text-rendering: optimizeLegibility;
 }
4

2 に答える 2

2
body {
  background-attachment: fixed; /* stick it */
  background-position: bottom;  /* to the bottom */
}
于 2012-12-20T21:30:49.953 に答える